Showing posts with label Dev Troubleshooting. Show all posts
Showing posts with label Dev Troubleshooting. Show all posts

Tuesday, October 19, 2021

How to configure a diferent port for the Apachee server for starting

 After installing the apachee server, sometimes you may unable to start the server due to port conflicts with another program or service which are running on your computer. The default starting port is 80 for apachee.  To fix this simply, you are able to configure an another port for starting apachee server. 

For do this, you should go to your apachee installed folder and find the "conf"' folder.  From the conf folder, find the file "httpd.conf" file.

Open this file from your text editor and search the word "port"

#Listen 80
Listen 8080

Add a new port as above highlighted.  And comment the conflicted port as above. Save the changes.

After that, start the apachee server. Cheers !

Tuesday, September 22, 2020

How to configure proxy settings in Sprint Tool Suite (STS)

 Sprint Tool Suite (STS) is the recommended IDE for the Spring Boot developments. Some companies impose network security  rules for protecting their networks. As a Developer, Some times this may be a problem when working with STS and maven projects. Not downloading dependencies, not creating the project correctly are some of major difficulties.  For the troubleshooting such this issues, This may be helpful to someone. If configure the proxy configurations in your IDE, the dependency downloading and updating related problems may be fixed. 

In your STS,  Go >> windows > preferences .

After opening preferences windows, access  general > network connections.

 Then update the proxy entries HTTP and HTTPS.

Provide host ip and port which are assigned by your organization.

After that, save settings and restart the IDE.