登录
首页 >  文章 >  linux

Centos7 手动安装nginx+php环境

时间:2025-01-21 21:46:07 469浏览 收藏

从现在开始,努力学习吧!本文《Centos7 手动安装nginx+php环境》主要讲解了等等相关知识点,我会在golang学习网中持续更新相关的系列文章,欢迎大家关注并积极留言建议。下面就先一起来看一下本篇正文内容吧,希望能帮到你!

本文以Nginx 1.8和PHP 7.2为例,详细讲解手动安装过程。

一、Nginx安装

  1. 安装依赖包:
yum -y install gcc gcc-c++ autoconf automake make zlib zlib-devel openssl openssl-devel pcre pcre-devel
  1. 下载Nginx: 从Nginx官网 (http://nginx.org/download/) 下载您需要的版本。

Centos7 手动安装nginx+php环境

  1. 解压并安装:
cd /usr/local
wget http://nginx.org/download/nginx-1.8.0.tar.gz  # 请替换为您的下载链接
tar -zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0
./configure
make && make install
  1. 启动Nginx:
cd /usr/local/nginx
./sbin/nginx
  1. 将Nginx添加到系统服务:

创建文件 /usr/lib/systemd/system/nginx.service,并写入以下内容:

[Unit]
Description=nginx - high performance web server
Documentation=http://nginx.org/en/docs/
After=network.target remote-fs.target nss-lookup.target

[Service]
Type=forking
PIDFile=/usr/local/nginx/logs/nginx.pid
ExecStartPre=/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
ExecStart=/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
PrivateTmp=true

[Install]
WantedBy=multi-user.target

保存后执行:

systemctl start nginx.service
systemctl enable nginx.service
  1. 验证安装:
ps -ef | grep nginx

二、PHP安装

  1. 安装依赖包:
yum install -y gcc gcc-c++ libxml2-devel openssl-devel libcurl-devel libjpeg-devel libpng-devel libicu-devel openldap-devel freetype freetype-devel
  1. 下载PHP: 从PHP官网 (http://php.net/downloads.php) 下载PHP 7.2.10 (或您需要的版本)。

  2. 解压并安装:

cd /usr/local
wget http://tz1.php.net/distributions/php-7.2.10.tar.gz # 请替换为您的下载链接
tar -zxvf php-7.2.10.tar.gz
cd php  # 如果解压后目录名不同,请调整
./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-iconv --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --enable-mbregex --enable-fpm --enable-mbstring --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --enable-opcache --with-pdo-mysql --enable-maintainer-zts -with-mcrypt=/usr/include --with-mysql=shared,mysqlnd --with-mysqli=shared,mysqlnd --with-pdo-mysql=shared,mysqlnd --enable-ftp --enable-session --with-gettext --with-jpeg-dir --with-freetype-dir --enable-fastcgi --without-gdbm --disable-fileinfo
make && make install
  1. 验证PHP安装:
php -v

如果 php -v 命令无法执行,请将PHP添加到环境变量 /etc/profile 文件中,添加 export PATH="/usr/local/php/bin:$PATH" (替换 /usr/local/php/bin 为您的实际路径),然后执行 source /etc/profile

完成以上步骤后,Nginx和PHP 7.2就安装完成了。 请根据您的实际情况调整路径和版本号。

以上就是本文的全部内容了,是否有顺利帮助你解决问题?若是能给你带来学习上的帮助,请大家多多支持golang学习网!更多关于文章的相关知识,也可关注golang学习网公众号。

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>