• centos7部署Wordpress


    1.LNMP环境部署

    centos7版本 :CentOS Linux release 7.5.1804 
    nginx版本: nginx/1.20.1
    mysql版本: 5.7.38
    php版本:7.4.30 
    WordPress版本:6.0
    
    • 1
    • 2
    • 3
    • 4
    • 5

    执行命令部署lnmp
    wget http://soft.vpser.net/lnmp/lnmp1.9.tar.gz -cO lnmp1.9.tar.gz && tar zxf lnmp1.9.tar.gz && cd lnmp1.9 && ./install.sh lnmp

    *注意selinux
    *注意防火墙,注意防火墙上端口的配置
    *如果是在ECS上部署,注意安全组上的端口配置

    2.为Wordpress创建数据库

    进入数据库
    mysql -uroot -p回车输入密码

    创建数据库
    create database wordpress;

    创建用户用于管理Wordpress数据库
    create user 'wordpress'@'localhost' identified by '1Q2w3e4r5t.';

    赋予用户对数据库wordpress的全部权限
    grant all privileges on wordpress.* to 'wordpress'@'localhost' identified by '1Q2w3e4r5t.';

    使配置生效。
    flush privileges;

    退出MySQL。
    exit;

    3.下载Wordpress

    下载Wordpress
    wget https://cn.wordpress.org/latest-zh_CN.tar.gz

    将默认文件移到其他目录
    mv /usr/local/nginx/html/*.html /tmp

    解压包到指定目录
    tar -zxf latest-zh_CN.tar.gz -C /usr/local/nginx/html

    4.修改服务配置文件

    修改nginx配置文件,指定网站根目录
    vim /usr/local/nginx/conf/nginx.conf
    在这里插入图片描述
    重启nginx
    systemctl restart nginx

    修改WordPress配置文件
    重命名配置文件
    mv wp-config-sample.php wp-config.php

    修改配置文件
    vim /usr/local/nginx/html/wordpress/wp-config.php

    /** WordPress数据库的名称 */
    define('DB_NAME', '这里填数据库名称');
    
    /** MySQL数据库用户名 */
    define('DB_USER', '这里填管理Wordpress数据库的用户');
    
    /** MySQL数据库密码 */
    define('DB_PASSWORD', '这里填数据库的密码');
    
    /** MySQL主机 */
    define('DB_HOST', 'localhost');
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    5.访问并配置

    浏览器访问http://主机IP地址:80,出现以下界面
    按照提示配置即可
    在这里插入图片描述

    6.主题安装

    服务器上主题的存放路径一般在:/wordpress/wp-content/themes,可以把解压后的包传到该路径

    点击外观-主题-安装主题
    在这里插入图片描述

    可以选择主题进行安装,也可以自行上传主题
    在这里插入图片描述
    在这里插入图片描述

    7.插件安装

    服务器上插件的存放路径一般在:/wordpress/wp-content/plugins,可以把解压后的包传到该路径

    可以搜索需要的插件安装,或者上传下载好的插件
    在这里插入图片描述

  • 相关阅读:
    如何从主机环境演变到云原生开发模式?
    Serverless 的前世今生
    1.4.24 实验24:华为基本ACL
    go语言添加代理
    LeetCode热题100——贪心算法
    智慧公厕厂家为城市智慧化建设提供城市卫生升级的力量
    使用了百度OCR,记录一下
    跨模态检索2023年最新顶会论文汇总
    3712. 根能抵达的点
    程序员的护城河
  • 原文地址:https://blog.csdn.net/Wangjiachenga/article/details/125404987