yum install -y mysql mysql-server
文字コードの設定
vim /etc/my.cnf下記を追記
default-character-set=utf8
MySQLを再起動、起動設定
/etc/rc.d/init.d/mysqld start chkconfig mysqld on
DBの作成(MySQLで)
create database wordpress; grant all privileges on wordpress.* to wordpress@localhost identified by 'パスワード';
Worpressをダウンロードして、解凍、設定(DBの設定は作ったDBの設定を入力)
wget http://ja.wordpress.org/wordpress-3.1-ja.zip unzip wordpress-3.1-ja.zip mv wordpress-3.1-ja /var/www/ chown -R apache:apache /var/www/wordpress/ cp /var/www/wordpress/wp-config-sample.php /var/www/wordpress/wp-config.php vim /var/www/wordpress/wp-config.php
あとはSendmainlのインストールと起動設定
yum install sendmail /etc/rc.d/init.d/sendmail start chkconfig sendmail on
0 件のコメント:
コメントを投稿