Discuz! Board

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 23|回复: 0

安装PHP72+nginx+wordpress

[复制链接]

7

主题

7

帖子

45

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
45
发表于 2024-12-2 16:38:50 | 显示全部楼层 |阅读模式
安装PHP+nginx+wordpress


//安装nginx
yum install -y epel-release
yum install -y  yum-utils
yum install nginx -y
systemctl start nginx && systemctl enable nginx

//安装php72
rpm -Uvh https://mirrors.huaweicloud.com/ ... /remi-release-7.rpm
yum-config-manager  --enable remi-php72
yum install  -y php php-cli php-fpm php-mysqlnd php-redis php-gd php-devel php-common php-zip php-json

systemctl start php-fpm && systemctl enable php-fpm

//配置nginx
vim  /etc/nginx/nginx.conf.default
找到

        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

复制到
vim  /etc/nginx/nginx.conf
server配置项里面
server{
... ....
        root      /usr/share/nginx/html;
        index  index.php index.html;
... ...
        location ~ \.php$ {
            root           html;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html$fastcgi_script_name;
            include        fastcgi_params;
        }

}

systemctl restart nginx


下载 WordPress 安装包并解压
cd /usr/share/nginx/html
wget https://wordpress.org/wordpress-5.4.10.zip
wget https://hciecloudservice.obs.cn- ... wordpress-5.4.5.zip
unzip wordpress-5.4.5.zip
chmod -R 777 wordpress
cd wordpress
Wordpress 对接数据库
cp wp-config-sample.php wp-config.php
vim wp-config.php
**再次强调DB_HOST的端口号是3310!!!



回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|DiscuzX

GMT+8, 2024-12-15 23:45 , Processed in 0.011652 second(s), 19 queries .

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表