# To prevent DoS attacks, set the maximum number of child processes # to 30. If you need to allow more than 30 concurrent connections # at once, simply increase this value. Note that this ONLY works # in standalone mode, in inetd mode you should use an inetd server # that allows you to limit maximum number of processes per service # (such as xinetd) MaxInstances 30 だってさ。 だから、30秒かかるみたい。
31 :
ぜんぜん、違うか... 30コネクションね。
32 :
しょうがないから、30秒待つか...
33 :
/etc/proftpd.conf に IdentLookups off と、書く。 気持ち、早くなった...
Securityは、どうなってるのかな? /etc/named.confのファイルは、644 /etc/named.bootのファイルは、644 /var/named のフォルダーは、700 配下のファイルは、644 立ち上げプロセスは、named -u named -g named となっているので /usr/sbin/useradd named /usr/sbin/groupadd named で、ユーザ、グループを追加する
OS起動時に実行させるために # vi /etc/rc.d/rc.local (以下の5行を追加) -------------------------------------------------------------------------------- # Start PostgreSQL server. if [ -f /usr/local/pgsql/bin/postmaster ]; then echo "start PostgreSQL" su - postgres -c "/usr/local/pgsql/bin/pg_ctl -w -o \"-S -i\" start" fi g_ctl stop ./rc.local で確認すると、ちゃんと起動している!万世!
64 :
次、apacheの設定です。 この調子で、どんどん、いれてくぞ〜笑
65 :
cd /usr/src/Update tar xvzf apache_1.3.22.tar.gz
66 :
cd apache_1.3.22 OPTIM="-O2" ./configure --enable-module=so make 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/apache/conf/httpd.conf | | | and then you should be able to immediately fire up | | Apache the first time by running: | | | | /usr/local/apache/bin/apachectl start | | | Thanks for using Apache. The Apache Group | | http://www.apache.org/ | +--------------------------------------------------------+ こちらこそ、Thanksです。
67 :
vi /usr/local/apache/conf/httpd.conf User web Group web に変更 usr/sbin/useradd web /usr/sbin/groupadd web で、追加
Cd curl-7.9.6 ./configure --disable-ipv6 make clean make make install よし、動いているかな?!
77 :
cd /usr/src/Update tar zxvf php-4.1.1.tar.gz cd php-4.1.1 ./configure --enable-mbstring\ --enable-mbstr-enc-trans\ --with-pgsql=/usr/local/pgsql/\ --with-apxs=/usr/local/apache/bin/apxs\ --enable-trans-sid\ --enable-versioning\ --with-curl=/usr/local/lib\ --without-gd
78 :
+--------------------------------------------------------------------+ | *** WARNING *** | | | | You chose to compile PHP with the built-in MySQL support. If you | | are compiling a server module, and intend to use other server | | modules that also use MySQL (e.g, mod_auth_mysql, PHP 3.0, | | mod_perl) you must NOT rely on PHP's built-in MySQL support, and | | instead build it with your local MySQL support files, by adding | | --with-mysql=/path/to/mysql to your configure line. | +--------------------------------------------------------------------+ | License: | | This software is subject to the PHP License, available in this | | distribution in the file LICENSE. By continuing this installation | | process, you are bound by the terms of this license agreement. | | If you do not agree with the terms of this license, you must abort | | the installation process at this point. | +--------------------------------------------------------------------+ Thank you for using PHP. WARNINGだって... 何か、悪いことした?というのは、冗談で、うまきいった。。 ふう
■apacheコマンドライン版インストール方法 su tar xvfzp /home/atw/php-4.1.1.tar.gz cd php-4.1.1 ./configure --prefix=/usr/local --with-pgsql=/usr/local/pgsql --enable-mbstr-enc-trans --enable-mbst\ ring --enable-track-vars make clean make depend make make install which php ln -s /usr/local/bin/php /usr/bin/ php -v
87 :
--with-apxs でモジュールにしたほうがいいと思われ。
88 :
あ、ごめん誤読した。スマソ。
89 :
<? include ('layout.php'); function main() { ?> <tr> <td colspan="11" height="833"> こんな感じで、表示されて、Apcheが、PHPを組み込んでくれません... どうして...涙涙
90 :
コマンドライン上では動くの?
91 :
よくわからないが、問題解決!!!!!! cd /usr/src/Update/ rm -rf php-4.1.1 rm -rf apache_1.3.22 rm -rf /usr/local/apache tar xvfzp php-4.1.1.tar.gz tar xvfzp apache_1.3.22.tar.gz cd /usr/src/Update/apache_1.3.22 OPTIM="-O2" ./configure --enable-module=so make psmake install