Apache を入れてみた。 ここら辺からダウンロード。 http://japache.infoscience.co.jp/apache/dist/ rin@maaya# cd apache_1.3.17/ rin@maaya# ./configure --prefix=/usr/local && make rin@maaya# su bash# make install : : +--------------------------------------------------------+ | You now have successfully built and installed the | | Apache 1.3 HTTP server. To verify that Apache actually | | works correctly you now should first check the | | (initially created or preserved) configuration files | | | | /usr/local/conf/httpd.conf | | | and then you should be able to immediately fire up | | Apache the first time by running: | | | | /usr/local/bin/apachectl start | | | Thanks for using Apache. The Apache Group | | http://www.apache.org/ | +--------------------------------------------------------+ bash# exit rin@maaya# /usr/local/conf/httpd.conf を編集する。 編集するのはここ。 # User/Group: The name (or #number) of the user/group to run httpd as. # . On SCO (ODT 3) use "User nouser" and "Group nogroup". # NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET) # when the value of (unsigned)Group is above 60000; # don't use Group nogroup on these systems! User nobody Group nogroup そも、うちのシステムには上記の user & group は存在しない。 とりあえず、自分のシステム下でだけ動けば良い。 自分の user, group を確認する。 rin@maaya# users rin rin rin rin rin@maaya# groups users sys tty 以下のように修正。 User rin Group users 外部に公開するならば、もっと適当に設定したほうが良いでしょう。