サクラ VPSサーバ設定の流れ

1)OS再インストール (CENTOS)

root パスワード再設定(VPS OS INSTALL時)
HOSTNAME 再設定
hostname newhost.enterdb.com

2)IPTABLES 適用

/etc/sysconfig/iptables ルールを作成
 
service iptables start
chkconfig --levels 235 iptables on

3) REMI REPOのINSTALL (PHP5.3, MYSQL5.5 設置するため)

$ wget http://download.fedora.redhat.com/pub/epel/5/x86_64/epel-release-5-4.noarch.rpm
$ wget http://rpms.famillecollet.com/el5.x86_64/remi-release-5-8.el5.remi.noarch.rpm
rpm -Uvh *

3.5)vsftpd 設置

yum install vsftpd

4)APACHE+PHP+MYSQL 設置

yum install httpd
yum --disablerepo \* --enablerepo=remi,epel install php php-devel php-gd php-mbstring php-mysql 
 
service httpd start
chkconfig --levels 235 httpd on
 
yum install perl-DBD-MySQL mysql
yum --disablerepo \* --enablerepo=remi,epel install mysql-server
 
service mysqld start
chkconfig --levels 235 mysqld on
 
※ yum install libaio (場合によって)