基本环境的安装
1. 安装 Apache
apt-get install apache2
2. 查看状态
service apache2 restart/status/start/stop
3. 关闭防火墙 80 端口限制
ufw allow 80
4. 安装 MySQL
apt-get install mysql-server mysql-client
5. 查看状态
service mysql retart/status/start/stop
6. 关闭防火墙 3306 端口限制
ufw allow 3306
7. 安装 PHP
apt-get install php7.0 apt-get install libapache2-mod-php7.0
apt-get install php7.0-mysql
8. 重启服务
service apache2 restart service mysql restart
9. 安装 phpMyAdmin
sudo apt-get install phpmyadmin
安装时:空格选择 apache2,enter 确定,下一步配置数据库,输入密码。
10. 创建 phpMyAdmin 快捷方式
sudo ln -s /usr/share/phpmyadmin /var/www/html
11. 启用 Apache mod_rewrite 模块,后面修改 wordpress 链接时会用
sudo a2enmod rewrite
12. 重启服务
service php7.0-fpm restart
提示服务没找到? 不去管它
service apache2 restart
13. 配置 Apache
vim /etc/apache2/apache2.conf
14. 添加以下信息:
AddType application/x-httpd-php .php .htm .html AddDefaultCharset UTF-8
15. 重启 Apache 服务
service apache2 restart
16. 安装 ufw 防火墙
sudo apt-get install ufw
17. 初始化数据库
sudo mysql -u root -p Enter Password:…
mysql> CREATE DATABASE wordpressdb;
mysql>exit
18. 重启服务
sudo service apache2 restart sudo service mysql restart
19. 浏览器访问:http:// ubuntu 地址 /phpmyadmin
20. 用 Xftp 连接虚拟机,然后将 wordpress 里面的所有文件全部都安装到放到 /var/www/html 里面。
21. 打开浏览器访问 http://ip 地址进行安装就可以了。
安装完之后更新会出现问题,所以需要设置权限:
1. 首先进入 apache 下的 wordpress 的目录下 (这是 apache 服务器默认安装的路径)
cd /var/www/html
2. 接着,给 wordpress 整个文件夹进行赋值权限,如果不赋予权限 更新的时候会报权限不足的错误 (root 权限下进行)
chmod -R 777 ./
3. 然后:进入 wordpress 文件夹里面。修改 wp-config.php 文件:
vim wp-config.php
4. 添加代码
define("FS_METHOD", "direct"); define("FS_CHMOD_DIR", 0777);
define("FS_CHMOD_FILE", 0777);
5. 按 ESC 后输入:wq 保存文件,重启 apache 服务
sudo service apache2 restart