temporary:centos_wordpress_build
CentOS WordPress構築
# rpm -Uvh http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm # yum install httpd mysql-server php php-mysql php-mbstring php-pear # pear install XML_RPC2
# chkconfig mysqld on # service mysqld start # mysql_secure_installation
# mysql -uroot -p mysql> create database wordpress; mysql> grant all privileges on wordpress.* to wordpress@localhost identified by 'wordpress'; mysql> flush privileges; mysql> quit
# cd /var/www/html # curl -LO http://ja.wordpress.org/latest-ja.tar.gz # tar xvzf latest-ja.tar.gz
# cd wordpress # cp wp-config-sample.php wp-config.php # vi wp-config.php
// ** MySQL 設定 - この情報はホスティング先から入手してください。 ** // /** WordPress のためのデータベース名 */ define('DB_NAME', 'wordpress'); /** MySQL データベースのユーザー名 */ define('DB_USER', 'wordpress'); /** MySQL データベースのパスワード */ define('DB_PASSWORD', 'wordpress');
# chown -R apache:apache /var/www/html/wordpress
# vi /etc/httpd/conf.d/wordpress.conf
<Directory /var/www/html/wordpress> AllowOverride All </Directory>
# chkconfig httpd on # service httpd start
http:ホスト名/wordpress/wp-admin/install.php
temporary/centos_wordpress_build.txt · 最終更新: 2014/03/04 01:52 by clownclown