前期准备
wordpress安装包,官网链接
1. 安装apache2.0
sudo apt-get install apache2
在浏览器中打开http://localhost/
如果出现
It works!
那证明OK了
重启apache:
sudo /etc/init.d/apache2 restart
2. 安装PHP
依次在终端打开:
sudo apt-get install php5 //安装PHP5
sudo apt-get install lib apache2-mod-php5 //配置APACHE+PHP
sudo /etc/init.d/apache2 restart //重启apache
测试:
打开
sudo vim /var/www/test.php
然后输入以下内容保存。phpinfo是PHP自带的一个函数,用来检测PHP各种环境的。
<?php
phpinfo()
?>
然后在浏览器中输入http://127.0.0.1/test.php
如果显示出你输入的东西即为成功
3. 安装MYSQL
sudo apt-ge tinstall mysql-server
安装完成按提示设置root密码
4. 让apache、php支持 mysql
sudo apt-get install libapache2-mod-auth-mysql
sudo apt-get install php5-mysql
sudo /etc/init.d/apache2 restart
至此apache2+php 5.2.4.2+mysql5.0.51的环境就完成了。
5.安装phpMyAdmin:
sudo apt-get install phpmyadmin
此时的phpmyadmin文件夹被安装在/usr/share/phpmyadmin下,为了能在浏览器中访问到phpmyadmin,需要在/var/www下做一个软连接到该文件夹:
进入/var/www文件夹,在该目录下执行如下操作:
cd /var/www
sudo ln -s /usr/share/phpmyadmin
此时在浏览器中键入http://localhost/phpmyadmin,进入管理界面
6. 为Wordpress新建mysql数据库:
此处可参考官方文档
Note: 以下操作说明以phpMyAdmin 2.6.0为参照;不同版本的phpMyAdmin用户界面可能略有不同。
如果左侧数据库下拉式菜单中还没有一个与WordPress相关的数据库,需要创建一个:
为WordPress数据库起个名字(可以使用'wordpress'或'blog'),将其输入到添加新数据库(Create new database)输入框中,并点击添加数据库(Create)。
点击左上方的Home图标,返回主界面,然后点击(Privileges)(权限)。如果用户列表中没有WordPress相关用户,创建一个:
点击添加新用户(Add a new User)
为WordPress选用一个用户名(推荐使用'root')并将其输入到用户名(User name)输入框中。(确保下拉式菜单中的“使用文本字段(Use text field:)已被选中)
选用一个保密性较高的密码(最好是大小写字母、数字及符号的组合),并将其输入到密码(Password)输入框中。(确保下拉式菜单中的“使用文本字段(Use text field:)已被选中),在Re-type输入框内再次输入密码
记住设定的用户名和密码。
将所有权限(Global privileges)下的所有选项保留默认状态
点击Go.
返回权限(Privileges)界面,点击刚刚创建的WordPress用户上的查看权限(Check privileges)图标。在详细数据库权限(Database-specific privileges)界面中,在为以下数据库添加权限下拉式菜单中选择之前创建的WordPress数据库。之后页面会刷新为该WordPress数据库的权限详情。点击选中所有,选择所有权限(Check All),最后点击Go。
在结果页面上,记下页面最上方Server:后的主机名hostname(通常为localhost)。
7. 下载、解压wordpress的tar.gz压缩包
下载
wget http://wordpress.org/latest.tar.gz
解压
sudo tar -zxvf latest.tar.gz
得到wordpress文件夹,然后按要求编辑wp-config.php文件,主要是提供数据库的名字(如这里的wordpress),用户名(如root),密码(如安装mysql时键入的密码)。
8. 将wordpress移动到/var/www目录下
sudo cp -a ./wordpress /var/www
编辑 WordPress config.php 文件
cp /var/www/wp-config-sample.php /var/www/html/wp-config.php
vi /var/www/wp-config.php
找到并修改数据库名称,数据库用户名, mysql root 密码:
[...]
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'wordpress');
/** MySQL database username */
define('DB_USER', 'wordpressadmin');
/** MySQL database password */
define('DB_PASSWORD', 'wordpresspassword');
/** MySQL hostname */
define('DB_HOST', 'localhost');
[...]
在浏览器中访问http://localhost/wordpress/wp-admin/install.php若成功访问,则 wordpress 环境搭建完成。
参考资料: