저는 Linux Mint 18 XFCE를 사용하고 로컬 개발을 위해 Apache, MySQL 및 PHP 패키지를 설치했습니다.
Apache 및 MySQL 서비스는 항상 활성화되어 있으며 처음부터 다시 시작됩니다.
처음부터 시작되지 않도록 이러한 서비스를 비활성화하려면 어떻게 해야 합니까? 로컬에서 작업하고 싶을 때마다 다음을 사용하여 두 서비스를 모두 시작한다는 아이디어입니다.
sudo service apache2 start && sudo service mysql start
답변1
systemctl
(systemd를 사용하는 경우) 또는 다음 명령을 사용하여 비활성화 해야 합니다 update-rc.d
.
systemctl disable apache2 mysql
또는
update-rc.d apache2 disable
update-rc.d mysql disable
답변2
이는 초기화 시스템에 따라 달라질 수 있습니다. 다음 중 하나를 시도해 보십시오.
chkconfig apache2 off
systemctl disable apache2
insserv -r apache2