- インストール
- Raspberry Pi 起動のとき Apache + PHP が自動起動するようにする
$ sudo systemctl enable apache2
Synchronizing state of apache2.service
with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install enable apache2
Created symlink /etc/systemd/system/multi-user.target.wants/apache2.service
→ /lib/systemd/system/apache2.service.
自動起動の解除は
$ sudo systemctl disable apache2
Synchronizing state of apache2.service
with SysV service script with /lib/systemd/systemd-sysv-install.
Executing: /lib/systemd/systemd-sysv-install disable apache2
Removed /etc/systemd/system/multi-user.target.wants/apache2.service.
- 起動・停止・再起動
$ sudo systemctl start apache2
$ sudo systemctl stop apache2
$ sudo systemctl restart apache2
|