我心如烟卸 发表于 2024-9-11 23:32:39

linux Centos怎么安装wordpress

一、安装nginx
1.用yum安装
yum -y install nginx


2.控制命令
//启动nginx//关闭nginx -s stop//重启nginx -s reload二、安装php


1.显示系统安装的php版本
yum list installed php*


2.卸载已安装的php版本
yum remove php*


3.下载yum源
rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm


rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm


4.显示可以安装的php包
yum list php*


5.下载最新的
yum -y install php72w php72w-mysql php72w-fpm


6.启动
service php-fpm restart
页: [1]
查看完整版本: linux Centos怎么安装wordpress