Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Accepted Answer
Hi there @geochanto,
From the error log output that you’ve provided, it looks like your Nginx service is trying to connect to another service that is supposed to be listening on port 8000.
You need to find out which service is supposed to listen on that port and start it. One way to do that would be to use the history command to see some past commands that were executed on the server and possibly lead you to the service that you are looking for.
Another possibility is that your Nginx is trying to connect to Apache as the backend. Form the output of the netstat command it looks like that the Apache service is listening on port 8090 rather than 8000, what I could suggest is visiting your server IP or domain name on the Apache’s port dicectly (eg. http://yourdomain.com:8090) and see if you get your website server there.
Here is a quick video demo that shows a similar scenario:
Let me know how it goes! Regards, Bobby