前提
OS: Debian
エラー内容
|
$ sudo ./ctlscript.sh restart apache
Unmonitored apache
Syntax OK
/opt/bitnami/apache2/scripts/ctl.sh : apache not running
Syntax OK
(98)Address already in use: AH00073: make_sock: unable to listen for connections on address [::]:80
(98)Address already in use: AH00073: make_sock: unable to listen for connections on address 0.0.0.0:80
no listening sockets available, shutting down
AH00015: Unable to open logs
/opt/bitnami/apache2/scripts/ctl.sh : httpd could not be started
Monitored apache
|
発生条件/原因/対処法
既に他のapacheが起動しているのが原因。
apacheを止める。
|
sudo service apache2 stop
|
ステータスを確認するとapacheが止まったまま。
|
./ctlscript.sh status
subversion already running
php-fpm already running
apache not running
mysql already running
|
※ctlscript.shはインストールしたredmineのディレクトリ直下にある。
apacheを起動する。
|
ctlscript.sh restart apache
|
ステータスの確認
|
./ctlscript.sh status
subversion already running
php-fpm already running
apache already running
mysql already running
|