文章目录 前提条件php安装安装 EPEL 源及源管理工具:安装 REMI 源:安装 PHP7.4 及扩展:设置开机自动启动其他php命令 wordpress 安装下载WordPress将
yum install epel-release yum-utils
yum install Http://rpms.remirepo.net/enterprise/remi-release-7.rpm
yum install -y php74-php-fpm php74-php-cli php74-php-bcmath php74-php-gd php74-php-JSON php74-php-mbstring php74-php-mcrypt php74-php-mysqlnd php74-php-opcache php74-php-pdo php74-php-pecl-crypto php74-php-pecl-mcrypt php74-php-pecl-geoip php74-php-pecl-swoole php74-php-recode php74-php-snmp php74-php-soap php74-php-xmll php74-php-zip
systemctl enable php74-php-fpm #开启开机自启
php74 -v #查看版本systemctl restart php74-php-fpm #重启systemctl start php74-php-fpm #启动systemctl stop php74-php-fpm #关闭systemctl status php74-php-fpm #检查状态#如果你运行的是 nginx 而不是 apache,修改vi /etc/opt/remi/php74/php-fpm.d/www.confuser = apachegroup = apache# Replace the values withuser = nginxgroup = nginx#查找 php 和扩展的安装包:rpm -qa | grep 'php'#查看 php74-php-pecl-swoole4-4.4.15-1.el7.remi.x86_64 的安装路径:rpm -ql php74-php-pecl-swoole4-4.4.15-1.el7.remi.x86_64yum update #更新可更新的所有软件,包括PHP
yum -y install wordpress
mv /usr/share/wordpress /usr/share/nginx/html/wordpress
进入移动后的WordPress路径下,软连接配置文件wp-config.php
cd /usr/share/nginx/html/wordpressln -snf /etc/wordpress/wp-config.php wp-config.php
编辑wp-config.php文件
// ** Mysql 设置 - 具体信息来自您正在使用的主机 ** //define('DB_NAME', 'wordpress');define('DB_USER', 'user');define('DB_PASSWORD', 'PASSword123.');define('DB_HOST', 'localhost');
server { listen 80; server_name 你的域名; location / { root /usr/share/nginx/html/wordpress; index index.php index.html index.htm; try_files $uri $uri/ /index.php?q=$uri&$args; # 没有他,无法访问文章页会出现404 client_max_body_size 100m; # # 默认才1m,很多插件都装不了,所以调大一点 } location ~ \.php$ { root /usr/share/nginx/html/wordpress; client_max_body_size 100m; # 默认才1m,很多插件都装不了,所以调大一点 include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; }}
重启nginx
nginx -s reload
来源地址:https://blog.csdn.net/qq_27575627/article/details/130393463
--结束END--
本文标题: CentOS+nginx手动搭建WordPress
本文链接: https://lsjlt.com/news/398005.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-27
2023-10-27
2023-10-26
2023-10-25
2023-10-21
2023-10-21
2023-10-18
2023-10-12
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0