Error starting apache from terminal after removing MAMP

前端 未结 3 1125
庸人自扰
庸人自扰 2021-02-09 08:01

I removed MAMP recently.

When I try to start apache from Terminal using:

sudo apachectl -k restart

I am getting the message

<         


        
3条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-09 08:24

    First, make sure you're actually trying to execute the proper version of apachectl by issuing the following command:

    which apachectl
    

    (You don't want to see any MAMP references there).

    Next, find your virtual hosts config (which is likely here if your MAMP references are gone)

    /etc/apache2/extra/httpd-vhosts.conf
    

    Make sure your virtual host definitions are good. (Sounds like you're referencing a bad one).

    
        ServerAdmin webmaster@localhost
        DocumentRoot "/Users/yourusername/Sites/mysite"
        ServerName mysite.local
        ErrorLog "/private/var/log/apache2/mysite-error_log"
        CustomLog "/private/var/log/apache2/mysite-access_log" common
    
    

    (If you're using a custom server name other than 'localhost' like I've defined above, just be sure your /etc/hosts file is up to date with that entry like this:

    127.0.0.1          mysite.local
    

    Don't forget to restart apache!

    sudo apachectl restart
    

提交回复
热议问题