手动启动LAMP Server


13

我在桌面Ubuntu安装上安装了LAMP服务器以测试Web应用程序。如何将其设置为仅在通知时才运行而不是在启动时运行?它不用作生产Web服务器,而是用于测试我在将PHP脚本推送到公共Web服务器之前编写的PHP脚本。

Answers:


15

从启动中删除:

sudo update-rc.d apache2 remove
sudo update-rc.d mysql remove

随意开始:

sudo service mysql start
sudo service apache2 start

在11.10中,我使用了sudo update-rc.d apache2 disable :)
Pitto 2012年


0

如果这样不起作用,请尝试强行将其删除。

sudo update-rc.d -f apache2 remove
sudo update-rc.d -f mysql remove
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.