lnmp 架构搭建 wordpress 开源博客

LNMP代表的就是:Linux系统下Nginx+MySQL+PHP这种网站服务器架构
Linux是一类Unix计算机操作系统的统称,是目前最流行的免费操作系统。
Nginx是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器。
Mysql是一个小型关系型数据库管理系统。
PHP是一种在服务器端执行的嵌入HTML文档的脚本语言。
这四种软件均为免费开源软件,组合到一起成为一个免费、高效、扩展性强的网站服务统。

 安装nginx,mysql,php可以参考我主页的其他博客

安装好之后就可以开始搭建wordpress

1.mysql

//先登入mysql
 
mysql -uroot -p
 
create database wordpress; //创建数据库
 
//设置用户名,wordpress数据库密码
grant all on wordpress.* to 'root'@'localhost' identified by 'Wordpress123!';
Query OK, 0 rows affected, 1 warning (0.00 sec)
 
//查看数据库
 show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
| wordpress          |
+--------------------+
5 rows in set (0.00 sec)
 
flush privileges;
Query OK, 0 rows affected (0.00 sec)
 
quit //退出数据库

2.nginx

 vim /usr/local/nginx/conf/nginx.conf //配置nginx文件
修改内容如下:
 server {
        listen       80;
        server_name  localhost;
    
        location / {
            root   /www/wordpress;
            index index.php index.html index.htm;
        }
 
 location ~ \.php$ {
            root           /www/wordpress;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /www/wordpress$fastcgi_script_name; //wordpress文件路径 /www/wordpress
            include        fastcgi_params;
        }
 
 
/usr/local/nginx/sbin/nginx -t //检查语法
/usr/local/nginx/sbin/nginx -s reload //重启nginx服务
如果没有在根目录里创建www目录,则
[root@localhost ~]# mkdir /www

 3.启动php-fpm(如果已经启动,则跳过此步骤)

/usr/local/php/sbin/php-fpm //启动php-fpm 注意自己的php-fpm路径

 4.下载wordpress

 官网:下载 | WordPress.org China 简体中文

lnmp 架构搭建 wordpress 开源博客_第1张图片

 

 点击下载.tar.gz 我选择的版本是:wordpress-5.9.3-zh_CN.tar.gz


[root@localhost local]# tar -zxf wordpress-5.9.3-zh_CN.tar.gz 
[root@localhost local]# mv wordpress /www  //移动wordpress文件,路径要和nginx里配置的路径一样
 
cd /www/wordpress/
[root@localhost wordpress]# cp wp-config-sample.php wp-config.php //复制wp-config-sample.php 并改名  wp-config.php
[root@localhost wordpress]# vim wp-config.php
 
//根据自己设置的数据库,对应修改下面配置  (grant all on wordpress.* to 'root'@'localhost' identified by 'Wordpress123!';)
 
/** The name of the database for WordPress */
define( 'DB_NAME', 'wordpress' );
 
/** Database username */ 用户名
define( 'DB_USER', 'root' );
 
/** Database password */ 密码
define( 'DB_PASSWORD', 'Wordpress123!' );
 
/** Database hostname */ (如果是localhost 最好写成IP 127.0.0.1 不然之后可能会报错)
define( 'DB_HOST', '127.0.0.1' );
 
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );
 
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
 
最后保存退出

 浏览器访问:http://ip

lnmp 架构搭建 wordpress 开源博客_第2张图片

数据库名 :wordpress

用户名:root

密码:Wordpress123!

数据库主机:127.0.0.1

表前缀 :wp_

lnmp 架构搭建 wordpress 开源博客_第3张图片

 lnmp 架构搭建 wordpress 开源博客_第4张图片

 lnmp 架构搭建 wordpress 开源博客_第5张图片

 lnmp 架构搭建 wordpress 开源博客_第6张图片

 lnmp 架构搭建 wordpress 开源博客_第7张图片

 lnmp 架构搭建 wordpress 开源博客_第8张图片

 

你可能感兴趣的:(linux)