WordPress:Ubuntu基本安装

系统

Ubuntu 16.04

安装所需环境

PHP

sudo apt install php7.0

Mysql

sudo apt install mysql-server

设置数据库root密码:

在这里插入图片描述

PHP-Mysql

sudo apt install php-mysql

下载WordPress压缩包

方法一

  • http://wordpress.org/download/下载压缩包

  • 解压后放到Ubuntu系统

方法二

  • wget http://wordpress.org/latest.tar.gz
    
  • tar -xzvf latest.tar.gz
    

Mysql配置

WordPress需要Mysql存储用户、评论以及博客的各种信息,所以需要一个一定权限的账号密码,直接给WordPress使用root账号也是可以的,但是权限太大不安全,所以这里创建一个新用户:

连接数据库:

$ mysql -u root -p
Enter password: 

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.25-0ubuntu0.16.04.2 (Ubuntu)

Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> 

创建wordpress数据库存放数据:

mysql> CREATE DATABASE database;

database:数据库名,这里假设使用wordpress

添加一个wordpress用户,它只有操作wordpress数据库的权限:**

mysql> GRANT ALL PRIVILEGES ON database.* TO "wordpressuser"@"localhost" IDENTIFIED BY "password";

database:和上一步相同

wordpressuser:新创建的用户名,这里假设使用wordpress

password:新创建用户的密码,这里假设使用wordpress

刷新使新用户生效:

mysql> FLUSH PRIVILEGES;

配置wp-config.php文件

复制wp-config-sample.phpwp-config.php

cp wp-config-sample.php wp-config.php

编辑wp-config.php:

vi wp-config.php 

修改三行内容:

// 上面设置的database
define( 'DB_NAME', 'wordpress' );

// 上面设置的wordpressuser
define( 'DB_USER', 'wordpress' );

// 上面设置的password
define( 'DB_PASSWORD', 'wordpress' );

配置服务器

这里使用Nginx

安装Nginx:

sudo apt install nginx

将解压的wordpress文件复制到Nginx目录:

sudo cp wordpress/ -R /var/www/html/

修改Nginx配置:

sudo vi /etc/nginx/sites-enabled/default 

server_name _;一行下添加以下内容:

        location ~ \.php$ {
                root           /var/www/html;
                fastcgi_pass   unix:/var/run/php/php7.0-fpm.sock;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
                include        fastcgi_params;
        }

然后保存退出

验证Nginx配置格式是否正确:

$ sudo nginx -t

// 输出以下内容说明没问题,否则排查哪步出问题
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful

重启Nginx

 sudo nginx -s reload

运行脚本

浏览器访问:http://server2.com/wordpress/wp-admin/install.php

在这里插入图片描述

然后安装完成登录

这时候可能出现:

403 Forbidden

解决:

修改Nginx配置:

sudo vi /etc/nginx/sites-enabled/default 

index后添加index.php

index index.html index.htm index.nginx-debian.html index.php;

最后重启Nginx

sudo nginx -t
sudo nginx -s reload
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值