Error 503 - Localhost

0

I just formatted my notebook. I have installed Ubuntu 18.04, Apache, MySQL, and PHP. But when I enter the page localhost , I get the following error:

How can I fix this?

    
asked by anonymous 19.08.2018 / 04:34

1 answer

-1

It seems to me that you do not have Apache started. Try this:

# Para ver se o tens o Apache iniciado:
sudo /etc/init.d/apache2 status

# Para iniciar o Apache:
sudo /etc/init.d/apache2 start

You may have to do the same with MySQL .

    
19.08.2018 / 12:23