2.

【Redmine】ctl.sh : httpd could not be started

編集

前提

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

 

編集
Post Share
子ページ

子ページはありません

同階層のページ
  1. rake aborted! PG::ConnectionBad: FATAL: Ident authentication failed for user "redmine"
  2. ctl.sh : httpd could not be started