VMWare で minimal install した後の設定
ifconfig -a
で、IPがとれていることを確認。
とれていない場合は、/etc/sysconfig/network-scripts/if-eth0 の ON_BOOT が NOになっている可能性がある
初期更新†
yum -y update
yum -y install emacs nkf nmap lrzsz policycoreutils-python yum-utils zip unzip wget ntp bind-utils telnet
shutdown -r now
cat > ~/.emacs
(setq make-backup-files nil)
(setq auto-save-default nil)
package-cleanup --oldkernels --count=1
/boot/grub/grub.conf
rhgb quiet を消す
shutdown -r now
cat >> /etc/cron.hourly/ntpdate
/usr/sbin/ntpdate ntp.nict.jp
chmod +x /etc/cron.hourly/ntpdate
/etc/cron.hourly/ntpdate
ssh でログイン
apache†
yum -y install httpd
chkconfig httpd on
iptables -I INPUT 5 -p tcp -m tcp --dport 80 -j ACCEPT
iptables -I INPUT 5 -p tcp -m tcp --dport 443 -j ACCEPT
service iptables save
service iptables restart
mysql†
yum -y install mysql mysql-server
chkconfig mysqld on
service mysqld start
php†
yum -y install php php-pear php-mysql
pear upgrade PEAR
ImageMagick†
yum -y install ImageMagick ImageMagick-perl
httpd 再起動†
service httpd start