wordpress搭建教程,wordpress是一款使用php语言开发的博客平台,站长可使用通过wordpress搭建属于个人的网站。本文主要分享如何wordpress建站的wordpress搭建教程,从服务器配置、域名解析、面板设置、wordpress建站、网站优化等一些列操作讲解wordpress搭建教程,站长可以学习到的不仅仅是如何成功搭建一个wordpress网站,更多的是学习wordpress网站优化,wordpress可以很强大,但是前提是站长已经掌握了它。
wordpress搭建教程技巧分享,详细步骤说明如下:
linux:linux 操作系统,以ubuntu18.04 为例;nginx:web 服务器;mysql:数据库;php:脚本语言;cms:wordpress,操作步骤:
wordpress搭建教程步骤1:登录云服务器
win系统建议使用xshell软件进行登陆
mac以及ubuntu系统可以使用自带的终端进行登陆
ssh-p端口号服务器用户名@ip(例如ssh-p22 username@111.222.111.222)
wordpress搭建教程步骤2:搭建环境
apt update && apt upgrade
apt install -y nginx mysql-server unzip python-certbot-nginx
apt install -y php php-fpm php-mysql php-gd php-json php-xml php-mbstring
wordpress搭建教程步骤3:配置数据库
执行以下命令,进入mysql
mysql
执行以下命令,创建 mysql 数据库。例如 “wordpress”
create database wordpress;
执行以下命令,创建一个新用户。例如 “user”,登录密码为 123456
create user 'user'@'localhost' identified by '123456';
执行以下命令,创建一个新用户。例如 “user”,登录密码为 123456
grant all privileges on wordpress.* to 'user'@'localhost' identified by '123456';
执行以下命令,退出 mysql
q
wordpress搭建教程步骤4:安装和配置 wordpress
下载并解压wordpress软件包
wget wordpress/latest.zip && unzip latest.zip
设置目录权限
chown -r www-data:www-data wordpress/
wordpress搭建教程步骤5:域名解析获取https证书
域名解析一般设置两条记录就够了,即将域名指向站长自己vps的 ip地址
申请https证书这里使用 let’s encrypt 免费证书
配置 nginx 以便于 let’s encrypt 能起作用:
sudo vim /etc/nginx/sites-enabled/default
default替换成你自己的nginx配置文件名,清空原有内容并添加下面的配置
server {
listen 80;
listen [::]:80;
server_name 你的域名;
}
保存退出之后,执行以下命令来检测 nginx 的配置文件是否有错
sudo nginx -t
如果出现这样的语句,就说明 nginx 的配置文件没有问题
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
执行命令获取证书
sudo certbot --nginx -d 你的域名
如果第一次运行 certbot 命令的话,需要在弹出的窗口输入站长的邮箱地址还有需要接受 let’s encrypt 的协议,执行完后,就会有输出一段字符
然后在文字中,这个/etc/letsencrypt/live/你的域名/fullchain.pem 路径很重要,就是你的 ssl 证书路径。
自动更新证书
因为 let’s encrypt 签发的证书有效期只有 90 天,所有在过期之前,我们需要自动更新 ssl 证书,而如果你使用最新的 certbot 的话,let’s encrypt 会帮你添加自动更新的脚本到 /etc/cron.d 里,你只需要去检测一下这个命令是否生效就ok!
sudo certbot renew --dry-run
如果这个命令你没看到什么 error 的话,那就是没什么问题了。
wordpress搭建教程步骤6:配置nginx
打开第五步设置的nginx配置文件名
sudo vim /etc/nginx/sites-enabled/default
在ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by certbot后加入如下内容
root /home/wordpress;
## this should be in your http block and if it is, it's not needed here.
client_max_body_size 10m;
index index.php;
location = /favicon.ico {
log_not_found off;
access_log off;
}
location = /robots.txt {
allow all;
log_not_found off;
access_log off;
location / {
# this is cool because no php is touched for static content.
# include the "?$args" part so non-default permalinks doesn't break when using query string
try_files $uri $uri/ /index.php?$args;
}
location ~ .php$ {
#note: you should have "cgi.fix_pathinfo = 0;" in php.ini
include fastcgi.conf;
fastcgi_intercept_errors on;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
client_max_body_size 10m;
}
location ~* .(js|css|png|jpg|jpeg|gif|ico)$ {
expires max;
log_not_found off;
}
保存退出之后,执行以下命令来检测 nginx 的配置文件是否有错
sudo nginx -t
如果出现这样的语句,就说明 nginx 的配置文件没有问题
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
wordpress搭建教程步骤7:初始化wordpress
搭建完成,访问站点,“现在开始”,按提示配置 wordpress。
填写上面记录下的数据库信息,提交。
填写网站标题以及设置管理员账号密码
登陆后台
wordpress搭建教程的总体过程已经分享给大家,希望对大家能有所帮助,如果还有不明白,可以结合文章图片来阅读,快速完成一键建站。