OSX Server 10.6 をセットアップし、すべてのアップデートをインストールし、実行中の apache2 を開始しました。
sudo apachectl graceful
/var/log/apache2/errorlog に表示されます
[Fri Dec 17 10:11:49 2010] [notice] Apache/2.2.15 (Unix) configured -- resuming normal operations
また
ps -ef | grep httpd
いくつかのプロセスを示します。
0 49388 1 0 0:00.05 ?? 0:00.07 /usr/sbin/httpd -D FOREGROUND
70 49389 49388 0 0:00.00 ?? 0:00.00 /usr/sbin/httpd -D FOREGROUND
70 49390 49388 0 0:00.00 ?? 0:00.00 /usr/sbin/httpd -D FOREGROUND
70 49391 49388 0 0:00.00 ?? 0:00.00 /usr/sbin/httpd -D FOREGROUND
70 49392 49388 0 0:00.00 ?? 0:00.00 /usr/sbin/httpd -D FOREGROUND
...
httpd.conf で DocumentRoot を編集しました:
ServerName bioinfo.mni.fh-giessen.de:80
DocumentRoot "/Volumes/ServerHD2/Web_Documents"
ErrorLog "/var/log/apache2/error_log"
<Directory "/Volumes/ServerHD2/Web_Documents">
Order Allow,Deny
Allow from All
</Directory>
構文はOKです:
apachectl configtest
Syntax OK
それでも、http://bioinfo.mni.fh-giessen.deでタイムアウトが発生します。
Problem loading page
どんな手掛かり ?