Ubuntu LAMP下搭建wordpress

在Ubuntu安装完LAMP环境的基础上搭建我们搭建wordpress

Ubuntu LAMP下搭建wordpress
1.png

一、wordpress网站文件放置

step1.下载源码
zzq@ubuntu:/var/www/html$ sudo wget https://wordpress.org/latest.zip
step2.安装解压工具
zzq@ubuntu:/var/www/html$ sudo apt-get install unzip 
step3. 解压latest.zip
zzq@ubuntu:/var/www/html$ unzip latest.zip
step4.移动源码到网站的根目录
zzq@ubuntu:/var/www/html$ sudo mv wordpress /var/www/html/
step5.更改根目录权限
  • 首先更改目录/var/www/html/wordpress/的所属主以及所属组
zzq@ubuntu:/var/www/html$ sudo chown -R www-data:www-data /var/www/html/wordpress/
  • 然后更改目录/var/www/html/wordpress/权限为755
zzq@ubuntu:/var/www/html$ sudo chmod -R 755 /var/www/html/wordpress/

二、然后修改Apache配置文件

配置虚拟主机:

  • 首先备份配置文件
zzq@ubuntu:/$ sudo cp /etc/apache2/sites-enabled/000-default.conf /etc/apache2/sites-enabled/000-default.conf.bak
  • 然后修改配置文件
zzq@ubuntu:/$ sudo vim /etc/apache2/sites-enabled/000-default.conf
Ubuntu LAMP下搭建wordpress
2.png
  • 修改完配置文件,重启apache服务
zzq@ubuntu:~$ sudo service apache2 restart
Ubuntu LAMP下搭建wordpress
3.png

三、数据库配置

step1.连接进入数据库
zzq@ubuntu:~$ mysql -u root -p
Ubuntu LAMP下搭建wordpress
4.png
step2. 创建wordpress数据库
mysql> create database wordpress;
Ubuntu LAMP下搭建wordpress
5.png

四、浏览器访问wordpress配置

  • web访问http://192.168.178.135,回车就会看到如下页面:
Ubuntu LAMP下搭建wordpress
6.png
  • 选择语言“简体中文”
Ubuntu LAMP下搭建wordpress
7.png
  • 点击“现在开始”
Ubuntu LAMP下搭建wordpress
8.png
  • 填写数据库用户名以及密码
Ubuntu LAMP下搭建wordpress
9.png
Ubuntu LAMP下搭建wordpress
10.png
  • 点击提交
Ubuntu LAMP下搭建wordpress
11.png
  • 点击现在安装,设置一些信息如下图所示
Ubuntu LAMP下搭建wordpress
12.png
  • 安装成功,返回如下
Ubuntu LAMP下搭建wordpress
13.png
  • 登录wordpress
Ubuntu LAMP下搭建wordpress
14.png
  • 成功进入wordpress
Ubuntu LAMP下搭建wordpress
15.png

PS:可能以后会遇到Wordpress不能正常访问,这可能是你的Ubuntu服务器更换了IP。解决办法参考以下博客:
https://blog.csdn.net/zyw19871007/article/details/52775781

上一篇:Vue.js快速入门


下一篇:Nessus 安装教程