打算做一个创客相关的站点,现在域名备案还没来及做。本文记录一下在域名备案完成前,在虚拟机上架设wordpress的步骤。
系统的环境
宿主机为HP probook 4441s笔记本。i5 cpu+8G RAM。win7 64位。虚拟机软件为vm10。
虚拟机系统:debian7.7 dual core+1G ram+20G HDD
宿主机IP:192.168.199.103;虚拟机IP:192.168.199.137
debian系统安装和配置
安装(略)
配置
配置升级源
修改系统源
vim /etc/apt/sources.list
屏蔽掉
deb cdrom:[Debian GNU/Linux 7.7.0 _Wheezy_ - Official amd64 CD Binary-1 20141018-13:06]/ wheezy main
这句的下面添加四句
deb http://mirrors.163.com/debian wheezy main non-free contrib
deb-src http://mirrors.163.com/debian wheezy main non-free contrib
deb http://mirrors.163.com/debian wheezy-updates main non-free contrib
deb-src http://mirrors.163.com/debian wheezy-updates main non-free contrib
然后升级索引,升级系统
apt-get update apt-get upgrade
安装工具软件
apt-get install mlocate vim
安装lemp环境
安装nginx
nginx是作为webserver。
apt-get install nginx
检查系统进程
ps -ef|grep nginx
安装mysql-server
虽然perconaserver和mariadbserver大有取代mysqlserver的呼声。但是mysql5.x还是值得信赖的。
apt-get install mysql-server mysql-devel
为了安全起见,可以再执行
/usr/bin/mysql_secure_installation
安装php
安装php5主体,php5连接mysql的部分, 搭配nginx的php5组件以及php5的优化组件。其余的必须php5-xml等扩展需要用的时候再安装。
apt-get install php5 php5-mysql php5-fpm php5-apc
注意:默认的php5-fpm是以sock文件方式运行的,而不是socket方式运行。所以没有占用9000端口
搭配nginx和php
现在nginx+mysqlserver+php5都已经安装完毕。现在可以配置nginx和php5了。
nginx的默认配置文件<em>sudo vim /etc/nginx/sites-available/default</em>里面定义了一个默认站点我们现在修改它。其中
#location ~ \.php$ {=====>注释取消掉
# fastcgi_split_path_info ^(.+\.php)(/.+)$;=====>注释取消掉
# # NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
#
# # With php5-cgi alone:
# fastcgi_pass 127.0.0.1:9000;
# # With php5-fpm:
# fastcgi_pass unix:/var/run/php5-fpm.sock;=====>注释取消掉
# fastcgi_index index.php;=====>注释取消掉
# include fastcgi_params;=====>注释取消掉
#}=====>注释取消掉
而后重启<strong>nginx</strong>和<strong>php-fpm</strong>
/etc/init.d/nginx restart /etc/init.d/php5-fpm restart
而后在<em>/usr/share/html</em>文件夹中建立一个info.php
<?php phpinfo(); ?>
在笔记本上访问 <em>http://192.168.199.137/info.php</em>可以看到phpinfo函数返回的相关信息。至此nginx已经能够解析php页面了。
建立wordpress站点
去wordpress中文站下载wp的源代码包
cd /usr/local/src wget --no-check-certificate https://cn.wordpress.org/wordpress-4.0.1-zh_CN.tar.gz tar -xf wordpress-4.0.1-zh_CN.tar.gz
建立一个专门的网站目录转移过去
mkdir -p /data/www/beginmaker.com mv wordpress/* /data/www/beginmaker.com/
设置权限这样安装时候程序有权限在目录中生成wp-config.php文件
chown -R www-data:www-data /data/www/beginmaker.com
为了管理方便。我们对站点单独建立一个nginx配置文件<em>/etc/nginx/sites-available/beginmaker.com</em>
`
server {
listen 80; ## listen for ipv4; this line is default and implied
root /data/www/beginmaker.com;
index index.html index.htm index.php;
server_name beginmaker.com www.beginmaker.com beginmaker.cc www.beginmaker.cc;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html;
# Uncomment to enable naxsi on this location
# include /etc/nginx/naxsi.rules
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
`
连接过去以生效
ln -sf /etc/nginx/sites-available/beginmaker.com /etc/nginx/sites-enabled/beginmaker.com
接下去修改笔记本的hosts文件。将beginmaker.com的解析指向到192.168.199.137上。
接下去访问 http://beginmaker.com/即可打开wordpress安装界面。
我们可以用mysql的root账户进行连接。也可以新建一个专门的账户
`
登录到mysql后台
create database if not exists beginmakerwp default charset utf8 collate utf8_general_ci;
grant all privileges on beginmakerwp.* to beginmakeruser@localhost identified by '密码';
flush privileges;
`
安装过程至此结束。
网友评论