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.
Hi @rulet,
Looking at the provided status, the error can be explained here
ноя 25 01:04:32 prime apachectl[5392]: no listening sockets available, shutting down
This would suggest Apache can’t start as something else is listening on the ports it’s supposed to. Usually Apache listens on port 80 so you’ll need to first check what is actually listening on it.
To do so, you’ll just need to enter this command
netstat -tulpen | grep 80
This will result in a similar ouput
netstat -tulpen | grep 80
tcp6 0 0 :::80 :::* LISTEN 0 22984337 516/httpd
In this case, Apache is actually properly running however in your cases something else would be listening on that port.
You’ll need to turn off the service that’s listening on the port. Edit it’s configuration to use another port and restart Apache.
That should be it.
Regards, KDSys