#从零开始建立一个php应用的教程 建立一个http服务的完整流程,这个流程可以用来指导系统的安装部署。 1. centos7 1.1 安装 在centos官网下载系统镜像并完成安装过程,安装过程根据安装向导进行。 1.2 配置 建立用户 useradd -d /home/username username -s /bin/bash -g wheel 添加用户组 添加密码 passwd username 添加权限 echo "username ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers ssh服务的配置依据个人习惯; 建议安装ntp服务; 2. php 2.1 安装 添加软件源 sudo yum install epel-release sudo yum -y install https://rpms.remirepo.net/enterprise/remi-release-7.rpm 安装remi源提供的版本 sudo yum install php74 php74-php-cli php74-php-fpm php74-php-pgsql php74-php-zip php74-php-devel php74-php-gd php74-php-mcrypt php74-php-mbstring php74-php-curl php74-php-xml php74-php-pear php74-php-bcmath php74-php-json 切换最新版本的php为默认版本 scl enable php72 bash 执行检查命令,检查是否安装成功 php -v php -m php -r "phpinfo();" 2.2配置 fpm服务需要配置,配置文件如下 /etc/opt/remi/php74/php-fpm.d/www.conf 其中需要修改的内容为 user = nginx group = nginx listen = /var/opt/remi/php72/run/php-fpm/php72-fpm.sock listen.owner = nginx listen.group = nginx listen.mode = 0660 修改好之后启动fpm服务,检查服务...