在Ubuntu Linux上使用Nginx安装Wordpress
本教程将向您展示在Ubuntu Linux上使用Nginx安装WordPress所需的所有步骤。
本教程在Ubuntu 18.04上进行了测试。
1.在Ubuntu Linux上安装Nginx
使用Ubuntu APT命令安装Nginx服务器。
# apt-get update
# apt-get install nginx
编辑nginx.conf配置文件。
将client_max_body_size添加到HTTP部分。
将最大上载大小配置为32兆字节。
# vi /etc/nginx/nginx.conf
这是我们配置的文件。
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events {
worker_connections 768;
}
http {
client_max_body_size 32M;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
ssl_prefer_server_ciphers on;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
手动重新启动Nginx Web服务器。
# service nginx restart
# service nginx status
验证Nginx服务状态。
● nginx.service – A high performance web server and a reverse proxy server
Loaded: loaded (/lib/systemd/system/nginx.service; enabled; vendor preset: enabled)
Active: active (running) since Sat 2018-12-29 04:29:22 UTC; 1h 17min ago
Docs: man:nginx(8)
Process: 2233 ExecStart=/usr/sbin/nginx -g daemon on; master_process on; (code=exited, status
Process: 2221 ExecStartPre=/usr/sbin/nginx -t -q -g daemon on; master_process on; (code=exite
Main PID: 2238 (nginx)
Tasks: 2 (limit: 1152)
CGroup: /system.slice/nginx.service
├─2238 nginx: master process /usr/sbin/nginx -g daemon on; master_process on;
└─2239 nginx: worker process
Nginx Web服务器已成功安装。
2.在Ubuntu Linux上安装MySQL
WordPress需要一个数据库系统来存储其所有配置。
使用Ubuntu APT命令安装MySQL服务器。
# apt-get update
# apt-get install mysql-server mysql-client
使用以下命令访问MySQL服务控制台。
# mysql -u root -p
在MySQL控制台上,您需要执行以下任务:
•创建名为wordpress的数据库。
•创建名为wordpress的MySQL用户帐户。
•完全控制wordpress数据库到wordpress用户。
CREATE DATABASE wordpress CHARACTER SET UTF8 COLLATE UTF8_BIN;
CREATE USER ‘wordpress’@’%’ IDENTIFIED BY ‘kamisama123’;
GRANT ALL PRIVILEGES ON wordpress.* TO ‘wordpress’@’%’;
FLUSH PRIVILEGES;
quit;
3.向Nginx添加PHP支持
Nginx需要一个外部程序来添加PHP支持。
使用Ubuntu APT命令安装PHP所需的包。
# apt-get update
# apt-get install php7.2-fpm
使用以下命令安装所需的PHP模块。
# apt-get install php7.2-xml php7.2-curl php7.2-gd php7.2-mbstring php7.2-readline
# apt-get install php7.2-bz2 php7.2-zip php7.2-json php7.2-opcache
在系统上查找PHP配置文件的位置。
编辑php.ini配置文件。
# updatedb
# locate php.ini
# vi /etc/php/7.2/fpm/php.ini
您的PHP版本可能与我们的版本不同。
您的PHP配置文件位置可能与我们的不同。
这是我们配置的文件。
file_uploads = On
max_execution_time = 300
memory_limit = 256M
post_max_size = 32M
max_input_time = 60
max_input_vars = 4440
upload_max_filesize = 32M
编辑Nginx默认网站配置文件。
# vi /etc/nginx/sites-available/default
在配置之前,这是原始文件。
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
try_files $uri $uri/ =404;
}
}
这是我们配置的新文件。
server {
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
index index.php index.html index.htm;
server_name _;
location / {
try_files $uri $uri/ =404;
}
location ~ .php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}
}
验证您的Nginx配置文件是否没有错误。
# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
重启PHP服务。
重启Nginx服务。
# service php7.2-fpm restart
# service nginx restart
4.在Ubuntu Linux上安装Wordpress
完成MySQL和Apache配置后,我们可以启动Wordpress安装。
下载Wordpress最新版本并解压缩包。
# cd /tmp
# wget https://wordpress.org/latest.tar.gz
# tar -zxvf latest.tar.gz
将WordPress文件夹移动到Apache根驱动器目录中。
让www-data用户完全控制WordPress目录及其文件。
# mv wordpress /var/www/html/
# chown www-data.www-data /var/www/html/wordpress/* -R
创建和编辑WordPress配置文件wp-config.php。
# cd /var/www/html/wordpress
# mv wp-config-sample.php wp-config.php
# vi wp-config.php
编辑位于wp-config.file上的MySQL数据库连接信息。
例如,这是我们配置的文件。
define(‘DB_NAME’, ‘wordpress’);
define(‘DB_USER’, ‘wordpress’);
define(‘DB_PASSWORD’, ‘kamisama123’);
define(‘DB_HOST’, ‘localhost’);
define(‘DB_CHARSET’, ‘utf8’);
define(‘DB_COLLATE’, ”);
在Ubuntu Linux上配置Wordpress
打开浏览器并输入您的Web服务器加/ wordpress的IP地址。
在我们的示例中,在浏览器中输入了以下URL:
•http://200.200.200.200/wordpress
将显示WordPress安装向导。
在下一个屏幕上,您必须输入您的网站信息。
在下一个屏幕上,您将收到WordPress安装的确认。
单击“登录”按钮,然后输入管理员帐户和密码。
成功登录后,将显示Wordpress仪表板。
Leave A Comment
You must be logged in to post a comment.