Proxy error when accessing Jenkins

When I access jenkins I get this error -

Proxy server error

The proxy server received an invalid response from the upstream server. The proxy server was unable to process the GET / request.

Reason: Error reading from remote server

I tried an init script to restart jenkins but it doesn't say the 8080 is already in use. I changed the jenkins default port but still get the above error. any pointers on how to solve this?

+3


source to share


1 answer


The simplest: Stop the web server you are using jenkins on. Run netstat -a.
Are you using port 8080? If so, you will need to change the webserver port to something other than 8080. (9090 is easy to remember).

If using 8080, you should have received an error when trying to start the web server. Check the log for the web server.



By the way, did you really mean that you changed the jenkins default port? Or is it the default port of the webserver jenkins is running on?

+1


source







All Articles