作者:王宇阳( mirror )^_^
参考文章:
nginx+php+mysql安装参考
php源码安装经验
php源码环境搭建过程中常见问题
centos(最小安装)默认是不打开网络的
启动网络vi打开:/etc/sysconfig/network-scripts/ifcfg-ens33 文件
将 “onboot:no”属性修改为:“onboot:yes”
重启网络服务# sudo rvice network restartok:
# ip addr
安装:
# yum -y install build-esntial
安装:更多依赖包
# yum -y install gcc automake autoconf libtool make
安装:g++
# yum -y install gcc gcc-c++
选定源码目录 ==> ftp下载pcre库 ==> 安装pcre库
# cd /usr/local/src# wget ftp://ftp.pcre.org/pub/pcre/pcre-8.42.tar.gz# tar -zxvf pcre-8.42.tar.gz# cd /pcre-8.42# ./configure# make && make install
下载zlib源码包 ==> 安装zlib包
# cd /usr/local/src# wget http://zlib.net/zlib-1.2.11.tar.gz# tar -zxvf zlib-1.2.11.tar.gz# cd zlib-1.2.11# ./configure# make && make install
# cd /usr/local/src# wget https://www.openssl.org/source/openssl-1.1.0k.tar.gz# tar -zxvf openssl-1.1.0k.tar.gz# cd ./openssl-1.1.0k# ./configure# make && make install
# cd /usr/local/src# wget /d/file/titlepic/nginx-1.16.1.tar.gz tar -zxvf nginx-1.16.1.tar.gz# cd nginx-1.16.1# groupadd -r nginx# uradd -r -g nginx nginx# ./configure \--prefix=/usr/local/nginx \--sbin-path=/usr/local/nginx/sbin/nginx \--conf-path=/usr/local/nginx/nginx.conf \--pid-path=/usr/local/nginx/nginx.pid \--ur=nginx \--group=nginx \--with-http_ssl_module \--with-http_flv_module \--with-http_mp4_module \--with-http_stub_status_module \--with-http_gzip_static_module \--http-client-body-temp-path=/var/tmp/nginx/client/ \--http-proxy-temp-path=/var/tmp/nginx/proxy/ \--http-fastcgi-temp-path=/var/tmp/nginx/fcgi/ \--http-uwsgi-temp-path=/var/tmp/nginx/uwsgi \--http-scgi-temp-path=/var/tmp/nginx/scgi \--with-pcre=/usr/local/src/pcre-8.42 \--with-zlib=/usr/local/src/zlib-1.2.11 \--with-openssl=/usr/local/src/openssl-1.1.0k \[注:当前所在目录一定要是/usr/local/src/nginx-1.16.1--with-pcre=/usr/local/src/pcre-8.41 指的是pcre-8.42 的源码路径。--with-zlib=/usr/local/src/zlib-1.2.11 指的是zlib-1.2.11 的源码路径。--with-openssl=/usr/local/src/openssl-1.1.0g 指的是openssl-1.1.0k 的源码路径。]# make && make install
nginx编译选项
make是用来编译的,它从makefile中读取指令,然后编译。
make install是用来安装的,它也从makefile中读取指令,安装到指定的位置。
configure命令是用来检测你的安装平台的目标特征的。它定义了系统的各个方面,包括nginx的被允许使用的连接处理的方法,比如它会检测你是不是有cc或gcc,并不是需要cc或gcc,它是个shell脚本,执行结束时,它会创建一个makefile文件。nginx的configure命令支持以下参数:
--prefix=*path*
定义一个目录,存放服务器上的文件 ,也就是nginx的安装目录。默认使用 /usr/local/nginx。
--sbin-path=*path*
设置nginx的可执行文件的路径,默认为 *prefix*/sbin/nginx
.--conf-path=*path*
设置在nginx.conf配置文件的路径。nginx允许使用不同的配置文件启动,通过命令行中的-c选项。默认为*prefix*/conf/nginx.conf
.--pid-path=*path* 设置nginx.pid文件,将存储的主进程的进程号。安装完成后,可以随时改变的文件名 , 在nginx.conf配置文件中使用 pid指令。默认情况下,文件名 为``*prefix*/logs/nginx.pid
.--error-log-path=*path*
设置主错误,警告,和诊断文件的名称。安装完成后,可以随时改变的文件名 ,在nginx.conf配置文件中 使用 的error_log指令。默认情况下,文件名 为*prefix*/logs/error.log
.--http-log-path=*path*
设置主请求的http服务器的日志文件的名称。安装完成后,可以随时改变的文件名 ,在nginx.conf配置文件中 使用 的access_log指令。默认情况下,文件名 为*prefix*/logs/access.log
.--ur=*name*
设置nginx工作进程的用户。安装完成后,可以随时更改的名称在nginx.conf配置文件中 使用的 ur指令。默认的用户名是nobody。--group=*name*
设置nginx工作进程的用户组。安装完成后,可以随时更改的名称在nginx.conf配置文件中 使用的 ur指令。默认的为非特权用户。--with-lect_module
--without-lect_module 启用或禁用构建一个模块来允许服务器使用lect()方法。该模块将自动建立,如果平台不支持的kqueue,epoll,rtsig或/dev/poll。
--with-poll_module
--without-poll_module
启用或禁用构建一个模块来允许服务器使用poll()方法。该模块将自动建立,如果平台不支持的kqueue,epoll,rtsig或/dev/poll。--without-http_gzip_module
— 不编译压缩的http服务器的响应模块。编译并运行此模块需要zlib库。--without-http_rewrite_module
不编译重写模块。编译并运行此模块需要pcre库支持。--without-http_proxy_module
— 不编译http_proxy模块。--with-http_ssl_module
— 使用https协议模块。默认情况下,该模块没有被构建。建立并运行此模块的openssl库是必需的。--with-pcre=*path*
— 设置pcre库的源码路径。pcre库的源码(版本4.4 – 8.30)需要从pcre网站下载并解压。其余的工作是nginx的./ configure和make来完成。正则表达式使用在location指令和 ngx_http_rewrite_module 模块中。--with-pcre-jit
—编译pcre包含“just-in-time compilation”(1.1.12中, pcre_jit指令)。--with-zlib=*path*
—设置的zlib库的源码路径。要下载从 zlib(版本1.1.3 – 1.2.5)的并解压。其余的工作是nginx的./ configure和make完成。ngx_http_gzip_module模块需要使用zlib 。--with-cc-opt=*parameters*
— 设置额外的参数将被添加到cflags变量。例如,当你在freebsd上使用pcre库时需要使用:--with-cc-opt="-i /usr/local/include。
.如需要需要增加 lect()支持的文件数量
:--with-cc-opt="-d fd_tsize=2048".
--with-ld-opt=*parameters*
—设置附加的参数,将用于在链接期间。例如,当在freebsd下使用该系统的pcre库,应指定:--with-ld-opt="-l /usr/local/lib".
安装完成后,按照安装的参数,安装的启动目录在/usr/local/nginx
[root@localhost nginx]# ls -l总用量 76drwxr-xr-x. 2 root root 4096 9月 8 09:46 conf-rw-r--r--. 1 root root 1077 9月 8 10:34 fastcgi.conf-rw-r--r--. 1 root root 1077 9月 8 10:34 fastcgi.conf.default-rw-r--r--. 1 root root 1007 9月 8 10:34 fastcgi_params-rw-r--r--. 1 root root 1007 9月 8 10:34 fastcgi_params.defaultdrwxr-xr-x. 2 root root 40 9月 8 09:46 html-rw-r--r--. 1 root root 2837 9月 8 10:34 koi-utf-rw-r--r--. 1 root root 2223 9月 8 10:34 koi-windrwxr-xr-x. 2 root root 41 9月 8 10:37 logs-rw-r--r--. 1 root root 5231 9月 8 10:34 mime.types-rw-r--r--. 1 root root 5231 9月 8 10:34 mime.types.default-rw-r--r--. 1 root root 2656 9月 8 10:34 nginx.conf-rw-r--r--. 1 root root 2656 9月 8 10:34 nginx.conf.default-rw-r--r--. 1 root root 6 9月 8 10:37 nginx.piddrwxr-xr-x. 2 root root 36 9月 8 10:34 sbin-rw-r--r--. 1 root root 636 9月 8 10:34 scgi_params-rw-r--r--. 1 root root 636 9月 8 10:34 scgi_params.default-rw-r--r--. 1 root root 664 9月 8 10:34 uwsgi_params-rw-r--r--. 1 root root 664 9月 8 10:34 uwsgi_params.default-rw-r--r--. 1 root root 3610 9月 8 10:34 win-utf[root@localhost nginx]# pwd/usr/local/nginx
由于centos-7防火墙不开发端口,所以在本地测试中,可以选择关闭防火墙或者允许开发80端口
# systemctl status firewalld ==> 防火墙状态# systemctl start firewalld ==> 开启防火墙# systemctl stop firewalld ==> 关闭防火墙# systemctl restart firewalld ==> 重启防火墙# firewall-cmd --reload ==> 防火墙重载# firewall-cmd --permanent --zone=public --add-port=80/tcp permanent: 永久有效 zone:作用域 --add-port=80阳痿吃什么好/tcp:添加-端口=端口/通信协议
开放端口或关闭防火墙后就可以启动nginx服务
[root@localhost nginx]# netstat -ano | grep 80tcp 0 0 0.0.0.0:80 0.0.0.0:* listen off (0.00/0/0)unix 3 [ ] stream connected 80900 unix 3 [ ] stream connected 80899 [root@localhost nginx]# /usr/local/nginx/sbin/nginxnginx: [emerg] bind() to 0.0.0.0:80 failed (98: address already in u)nginx: [emerg] bind() to 0.0.0.0:80 failed (98: address already in u)nginx: [emerg] bind() to 0.0.0.0:80 failed (98: address already in u)nginx: [emerg] bind() to 0.0.0.0:80 failed (98: address already in u)nginx: [emerg] bind() to 0.0.0.0:80 failed (98: address already in u)nginx: [emerg] still could not bind()
通过netstat查看端口网络状态,是否有服务占用80端口;通过调用nginx的启动目录实现nginx服务启动
如图:启动成功
为了避免每次开机手动启动,可以使用命令脚本,注册服务,开机自启动等
创建nginx启动命令脚本
`vi /etc/init.d/nginx`
插入以下内容, 注意修改path和name字段, 匹配自己的安装路径 (这段是从网上copy的)
`#! /bin/bash``# chkconfig: - 85 15``path=/usr/local/nginx``desc=``"nginx daemon"``name=nginx``daemon=$path/sbin/$name``configfile=$path/$name.conf``pidfile=$path/logs/$name.pid``scriptname=/etc/init.d/$name``t` `-e``[ -x ``"$daemon"` `] || exit 0``do_start() {``$daemon -c $configfile || echo -n ``"nginx already running"``}``do_stop() {``$daemon -s stop || echo -n ``"nginx not running"``}``do_reload() {``$daemon -s reload || echo -n ``"nginx can't reload"``}``ca` `"$1"` `in``start)``echo -n ``"starting $desc: $name"``do_start``echo ``"."``;;``stop)``echo -n ``"stopping $desc: $name"``do_stop``echo ``"."``;;``reload|graceful)``echo -n ``"reloading $desc configuration..."``do_reload``echo ``"."``;;``restart)``echo -n ``"restarting $desc: $name"``do_stop``do_start``echo ``"."``;;``*)``echo ``"usage: $scriptname {start|stop|reload|restart}"` `>&2``exit 3``;;``esac``exit 0`
设置执行权限
`chmod a+x /etc/init.d/nginx`
注册成服务
`chkconfig --add nginx`
设置开机启动
`chkconfig nginx ``on`
重启, 查看nginx服务是否自动启动
`shutdown -h 0 -r``ss -apn|grep nginx`
对nginx服务执行停止/启动/重新读取配置文件操作
`#启动nginx服务``systemctl start nginx.rvice``#停止nginx服务``systemctl stop nginx.rvice``#重启nginx服务``systemctl restart nginx.rvice``#重新读取nginx配置(这个最常用, 不用停止nginx服务就能使修改的配置生效)``systemctl reload nginx.rvice`
[root@localhost src]# rpm -qa |grep mysql[root@localhost src]# wget http://repo.mysql.com/mysql-community-relea-el7-5.noarch.rpm[root@localhost src]# rpm -ivh mysql-community-relea-el7-5.noarch.rpm[root@localhost src]# yum dpdate[root@localhost src]# yum install mysql-rver [root@localhost src]# chown mysql:mysql -r /var/lib/mysql 设置权限[root@localhost src]# mysqld --initialize 初始化mysql[root@localhost src]# systemctl start mysqld 启动mysql
php-fpm是一个php fastcgi管理器,是只用于php的
安装依赖包# yum -y install libmcrypt-devel mhash-devel libxslt-devel \libjpeg libjpeg-devel libpng libpng-dvevl freetype freetype-devel libxml2 libxml2-devel \zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel \ncurs ncurs-devel curl curl-devel e2fsprogs e2fsprogs-devel \krb5 krb5-devel libidn libidn-devel openssl openssl-devel# yum -y install libzip # wget /d/file/titlepic/libzip-1.3.2.tar.gz # tar -zxvf libzip-1.3.2.tar.gz cd libzip-1.3.2 # ./configure # make && make install# wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/attic/libmcrypt/libmcrypt-2.5.7.tar.gz# tar -zxvf libmcrypt-2.5.7.tar.gz# cd libmcrypt-2.5.7# ./configure –prefix=/usr/local# make && make install源码安装php:
# cd /usr/local/src# wget /d/file/titlepic/php-5.6.27.tar.gz tar -zxvf php-5.6.27.tar.gz# ./configure --prefix=/usr/local/php --enable-fpm --with-mcrypt \--enable-mbstring --enable-pdo --with-curl --disable-debug --disable-rpath \--enable-inline-optimization --with-bz2 --with-zlib --enable-sockets \--enable-sysvm --enable-sysvshm --enable-pcntl --enable-mbregex \--with-mhash --enable-zip --with-pcre-regex --with-pdo-mysql --with-mysqli \--with-gd --with-jpeg-dir --with-freetype-dir --enable-calendar\# make && make install
我在执行configure时,发生报错:plea reinstall the libzip distribution 于是我删除了旧版的libzip“yum remove libzip”,之后下载libzip源码包进行西南政法大学是211吗本地执行configure+make&&make install
执行libzip的安装:
# wget /d/file/titlepic/libzip-1.5.2.tar.gz tar -zxf libzip-1.2.0.tar.gz# cd libzip-1.2.0# ./configure# make && make install
php安装新问题:安装执行configure时报错
configure: error: off_t undefined; check your library configuration
解决方法:
vim /etc/ld.so.conf #添加如下几行/usr/local/lib64/usr/local/lib/usr/lib/usr/lib64 #保存退出:wqldconfig -v # 执行命令,使之生效
报错:configure: warning: unrecognized options: –with-mcrypt
解决方法:php 7.2+不支持 –with-mcrypt ; –enable-gd-native-ttf
# ./configure --prefix=/usr/local/php --enable-fpm \--enable-mbstring --enable-pdo --with-curl --disable-debug --disable-rpath \--enable-inline-optimization --with-bz2 --with-zlib --enable-sockets \--enable-sysvm --enable-sysvshm --enable-pcntl --enable-mbregex \--with-mhash --enable-zip --with-pcre-regex --with-pdo-mysql --with-mysqli \--with-gd --with-jpeg-dir --with-freetype-dir --enable-calendar\
其它错误可以参考百度/google解决(常见php安装的方案)!
至此!php-fpm安装的基本流程结束了,下一步就需要配置文件
# cp php.ini-production /usr/local/php/lib/php.ini为php-fpm提供配置文件
# cd /usr/local/php# cp etc/php.fpm.conf.default etc/php-fpm.conf# vi etc/php-fpm.conf
vi打开php-fpm.conf文件:
将文件的尾部的索引;修改成实际的目录
include=/usr/local/php/etc/php-fpm.d/*.conf
添加用户和组:
uradd mirrorgroupadd -g mirror mirror
默认情况下,etc/php-fpm.d/目录下有一个“www .conf.defalut”用户配置文件
# cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf# vi /usr/local/php/etc/php-fpm.d/www.conf
修改“www.conf”文件中的ur和group的value;添加用户和组
ur = mirrorgroup = mirror启动php-fpm服务
# /usr/local/php/sbin/php-fpm# ps aux | grep php-fpm [验证服务启动]# netstat -tln | grep 9000 [验证网络端口是否使用]
[root@localhost /]# ps aux | grep php-fpmroot 41831 0.0 0.3 221264 6220 ? ss 08:54 0:00 php-fpm: master process (/usr/local/php/etc/php-fpm.conf)mirror 41832 0.0 0.2 221264 5748 ? s 08:54 0:00 php-fpm: pool wwwmirror 41833 0.0 0.2 221264 5748 ? s 08:54 0:00 php-fpm: pool wwwroot 41835 0.0 0.0 110292 916 pts/0 r+ 08:54 0:00 grep --color=auto php-fpm[root@localhost /]# netstat -tln | grep 9000tcp 0 0 127.0.0.1:9000 祝福母亲节的句子 0.0.0.0:* listen
至此!php-fpm服务启动成功!
[root@localhost nginx]# vi ./nginx.conf#ur nobody;worker_process 1;#error_log logs/error.log;#error_log logs/error.log notice;#error_log logs/error.log info;#pid logs/nginx.pid;events { worker_connections 1024;}http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_ur [$time_local] "$request" ' # '$status $body_bytes_nt "$http_referer" ' # '"$http_ur_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; ndfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; rver { listen 80; rver_name localhost; #chart koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm; } #error_page 404 /404.html; # redirect rver error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the php scripts to apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the php scripts to fastcgi rver listening on 127.0.0.1:9000 # #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; #} # deny access to .htaccess files, if apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} } # another virtual host using mix of ip-, name-, and port-bad configuration # #rver { # listen 8000; # listen somename:8080; # rver_name somename alias another.alias; # location / { # root html; # index index.html index.htm; # } #} # https rver # #rver { # listen 443 ssl; # rver_name localhost; # ssl_certificate cert.pem; # ssl_certificate_key cert.key; # ssl_ssion_cache shared:ssl:1m; # ssl_ssion_timeout 5m; # ssl_ciphers high:!anull:!md5; # ssl_prefer_关羽刮骨疗毒rver_ciphers on; # location / { # root 阿狸的梦之城堡html; # index index.html index.htm; # } #}}
修改rver配置块中的location和php后端请求配置块
rver { listen 80; rver_name localhost; #chart koi8-r; #access_log logs/host.access.log main; location / { root html; index index.html index.htm index.php } #error_page 404 /404.html; # redirect rver error pages to the static page /50x.html # error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } # proxy the php scripts to apache listening on 127.0.0.1:80 # #location ~ \.php$ { # proxy_pass http://127.0.0.1; #} # pass the php scripts to fastcgi rver listening on 127.0.0.1:9000 # 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; } # deny access to .htaccess files, if apache's document root # concurs with nginx's one # #location ~ /\.ht { # deny all; #} }
在location配置块中添加index.php首页
php请求和后端php-fpm模块进行通信,需要配置location ~.php$配置块
root:配置php程序文件的根目录
*** 修改配置文件的第一行:”ur“属性为我们之前配置的用户**,表示nginx的权限
至此!我们的nginx和php的环境完成简单的配置!
启动nginx服务
# /usr/local/nginx/sbin/nginx
启动php-fpm服务
# /usr/local/php/sbin/php-fpm
启动mysql服务
# systemctl start mysqld
在nginx的目录html中添加一个php文件:”index.php“
<?php phpinfo();?>
编写一个连接数据库行为的php文件:”mysql.php“
php和mysql之间的连接操作依靠的是”mysqli“
<?php $conn = mysqli_connect("127.0.0.1","root","926498"); if(! $conn ) { echo "连接失败".mysqli_connect_error(); } el { echo "连接成功"; }?>
至此!php+nginx+mysql环境完成了基本的搭建!
本文发布于:2023-04-07 16:33:10,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/5a019656d31e1451e613f3e2ada371cf.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:Linux下PHP+Nginx环境搭建.doc
本文 PDF 下载地址:Linux下PHP+Nginx环境搭建.pdf
留言与评论(共有 0 条评论) |