■Apache 2.0でのSSIの設定 |
httpd.confを編集
-- 途中省略 --
AddType text/html .shtml ← この部分を追加
AddOutputFilter INCLUDES .shtml -- 途中省略 --
Options +Includes ← SSIを動かしたいディレクティブで追加
詳細はここ
|
■proftpをスーパーサーバー(xinetd)で動かす |
/etc/proftpd/proftpd.confファイルを編集
ServerType inetd
/etc/xinetd.d/ftpファイルを作成(名前はproftpdでもよい)
ファイルは同じディレクトリのtelnetファイルをコピーして使用したほうが早い。
内容は
service ftp
{
disable = no
socket_type = stream
protocol = tcp
wait = no
user = root
server = /usr/sbin/in.proftpd
# server_args = -h
}
作成後
/etc/rc.d/init.d/xinetd restart
動かなかったら
/etc/rc.d/init.d/xinetd resume
もっと詳しいことはIT Boost
又はmland98
|
■時刻を合わせる |
/etc/cron.daily/以下にファイル作成
ファイル内容は
#!/bin/sh
ntpdate 133.100.9.2
|
■ネットワーク関係の4ファイル |
- /etc/sysconfig/network
- /etc/HOSTNAME
- /etc/sysconfig/network-scripts/ifcfg-eth0
- /etc/hosts
|
■NFSの起動 |
- etc/hosts.allowファイルの編集
portmap:192.168.1
- /etc/rc.d/init.d/portmap start
- 公開ディレクトリ作成・パーミンション変更(/usr/share/nfs-share)
- マウントディレクトリ作成(/mnt/nfs-client)
- /etc/exportファイル編集
/usr *.hoge.ne.jp(rw)
- /etc/rc.d/init.d/nfs start
- mount -t nfs 192.168.1.103:/usr/share/nfs-share /mnt/nfs-client
- exportfs -rav (/etc/exportファイル再編集時)
|