This is the place where I store the words when I surfing. Share with u.
这里放着我在网上看到的文章,和你一起分享。
Thursday, October 24, 2013
Apache in Ampps cannot start after upgrade to Mavericks
After upgrade to Mavericks, Ampps doesn't ask for your password any more and you simply can not start Apache. MySql is fine.
If you try start apache in terminal:
bash /Applications/AMPPS/apache/bin/apachectl start
you will get:
(13)Permission denied: make_sock: could not bind to address [::]:80
(13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
The trick is to use sudo
bash sudo /Applications/AMPPS/apache/bin/apachectl start
will get your Apache started, but you need use
bash /Applications/AMPPS/apache/bin/apachectl stop to stop it.
Then you can use automator to make this command as an application.
Have fun!
Subscribe to:
Post Comments (Atom)
3 comments:
worked for me too! thanks!
Worked for me too. Just to be clear, it's "sudo bash /Applications/AMPPS/apache/bin/apachectl start". Not bash sudo bash ; ]
AMPPS fixed the issue :
http://www.softaculous.com/board/index.php?tid=4639
Post a Comment