阿里云-云小站(无限量代金券发放中)
【腾讯云】云服务器、云数据库、COS、CDN、短信等热卖云产品特惠抢购

CentOS 6.5 搭建PHP环境(Nginx+MariaDB+PHP7)

131次阅读
没有评论

共计 6189 个字符,预计需要花费 16 分钟才能阅读完成。

分享下 CentOS 6.5 搭建 PHP 环境 (Nginx+MariaDB+PHP7) 的心得笔记,有什么不对的地方,还请各位大大指出。

1.mariaDb

vim /etc/yum.repos.d/MariaDB.repo
[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/5.5/centos5-x86
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1

sudo yum install MariaDB-server MariaDB-client
# 启动 MariaDB
sudo /etc/init.d/mysql start

通过在创建 MariaDB.repo,可以实现 yum 安装

对应不同 linux 版本配置文件,和详细方法可以参考下面链接

https://mariadb.com/kb/zh-cn/installing-mariadb-with-yum/

https://downloads.mariadb.org/mariadb/repositories/#mirror=opencas

2.nginx

# 此命令可以一键安装开发工具包
yum -y groupinstall “Development Tools” “Development Libraries”

#创建 www 组与 www 用户
  groupadd www
  useradd -g www -s /usr/sbin/nologin www

# 安装 Nginx

tar zxvf nginx-1.9.9.tar.gz

cd nginx-1.9.9.tar.gz/
./configure –user=www –group=www –prefix=/usr/local/nginx –with-http_stub_status_module –with-http_ssl_module
make && make install

#启动 Nginx
/usr/local/nginx/sbin/nginx
#测试配置文件是否正确
/usr/local/nginx/sbin/nginx -t

还可以通过 service 命令来操作 nginx 服务, 如下

1. 先创建一个文件,里面写入以下 shell 脚本如:

进入编辑模式并复制以下内容:查看 nginx.shell 文件

#!/bin/bash
# nginx Startup script for the Nginx HTTP Server
#
# chkconfig: – 85 15
# description: Nginx is a high-performance web and proxy server.
#              It has a lot of features, but it’s not for everyone.
# processname: nginx
# pidfile: /var/run/nginx.pid
# config: /usr/local/nginx/conf/nginx.conf

nginxd=/usr/local/nginx/sbin/nginx
nginx_config=/usr/local/nginx/conf/nginx.conf
nginx_pid=/var/run/nginx.pid

RETVAL=0
prog=”nginx”

# Source function library.
. /etc/rc.d/init.d/functions

# Source networking configuration.
. /etc/sysconfig/network

# Check that networking is up.
[${NETWORKING} = “no” ] && exit 0

[-x $nginxd] || exit 0

# Start nginx daemons functions.
start() {

if [-e $nginx_pid];then
  echo “nginx already running….”
  exit 1
fi

  echo -n $”Starting $prog: “
  daemon $nginxd -c ${nginx_config}
  RETVAL=$?
  echo
  [$RETVAL = 0] && touch /var/lock/subsys/nginx
  return $RETVAL

}

# Stop nginx daemons functions.
stop() {
        echo -n $”Stopping $prog: “
        killproc $nginxd
        RETVAL=$?
        echo
        [$RETVAL = 0] && rm -f /var/lock/subsys/nginx /var/run/nginx.pid
}

# reload nginx service functions.
reload() {

    echo -n $”Reloading $prog: “
    #kill -HUP `cat ${nginx_pid}`
    killproc $nginxd -HUP
    RETVAL=$?
    echo

}

# See how we were called.
case “$1” in
start)
        start
        ;;

stop)
        stop
        ;;

reload)
        reload
        ;;

restart)
        stop
        start
        ;;

status)
        status $prog
        RETVAL=$?
        ;;
*)
        echo $”Usage: $prog {start|stop|restart|reload|status|help}”
        exit 1
esac

exit $RETVAL

2. 把这个文件复制到 /etc/init.d 目录下

#cp ./nginx /etc/init.d

3. 修改这个文件为可执行的权限

#chmod +x /etc/init.d/nginx

4. 把这个可执行文件加到服务服务中去

#chkconfig –add nginx

之后就可以使用 service 命令来管理了!

3.php

# 安装前先更新所需要的模块
# yum -y install libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel mysql pcre-devel
# wget  https://downloads.php.net/~ab/php-7.0.0RC1.tar.gz
# tar zxvf php-7.0.0RC1.tar.gz
# cd php-7.0.0RC1
# ./configure –prefix=/usr/local/php \
 –with-curl \
 –with-freetype-dir \
 –with-gd \
 –with-gettext \
 –with-iconv-dir \
 –with-kerberos \
 –with-libdir=lib64 \
 –with-libxml-dir \
 –with-mysqli \
 –with-openssl \
 –with-pcre-regex \
 –with-pdo-mysql \
 –with-pdo-sqlite \
 –with-pear \
 –with-png-dir \
 –with-xmlrpc \
 –with-xsl \
 –with-zlib \
 –enable-fpm \
 –enable-bcmath \
 –enable-libxml \
 –enable-inline-optimization \
 –enable-gd-native-ttf \
 –enable-mbregex \
 –enable-mbstring \
 –enable-opcache \
 –enable-pcntl \
 –enable-shmop \
 –enable-soap \
 –enable-sockets \
 –enable-sysvsem \
 –enable-xml \
 –enable-zip

# 编译安装
# make &&  make install

# 配置文件
# cp php.ini-development /usr/local/php/lib/php.ini
# cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
# cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.conf
# cp -R ./sapi/fpm/php-fpm /etc/init.d/php-fpm

# 启动
# /etc/init.d/php-fpm

# 查看是否启动
ps aux | grep php

修改 nginx 配置, 监听 *.php 的文件

# vim /usr/local/nginx/conf/nginx.conf

简单配置如下:

user  www www;

worker_processes 10;

#error_log  /data/logs/nginx_error.log  crit;

#pid        logs/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;

events
{
    use epoll;

    worker_connections 51200;
}

http
{
    include      mime.types;
    default_type  application/octet-stream;

    #charset  gbk;
   
    server_names_hash_bucket_size 128;
    client_header_buffer_size 32k;
    large_client_header_buffers 4 32k;
    #client_max_body_size 8m;

    server_tokens off;

    expires      1h;

    sendfile on;
    tcp_nopush    on;
    keepalive_timeout 60;
    tcp_nodelay on;

    error_page  404  /404.jpg;

    fastcgi_connect_timeout 20;
    fastcgi_send_timeout 30;
    fastcgi_read_timeout 120;
    fastcgi_buffer_size 256k;
    fastcgi_buffers 8 256k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;
    fastcgi_temp_path /dev/shm;

    gzip on;
    gzip_min_length  2048;
    gzip_buffers    4 16k;
    gzip_http_version 1.1;
    gzip_types  text/plain  text/css application/xml application/x-javascript ;

    log_format  access  ‘$remote_addr – $remote_user [$time_local] “$request” ‘
                          ‘$status $body_bytes_sent “$http_referer” ‘
                          ‘”$http_user_agent” $http_x_forwarded_for’;

server {
        listen      80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root  html;
            index  index.html index.htm index.php;
        }

    #rewrite index.php/^(.*)$ idex.php?s=/$1 last ;

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page  500 502 503 504  /50x.html;
        location = /50x.html {
            root  html;
        }
location ~ \.php$
            {
        fastcgi_pass  127.0.0.1:9000;
              fastcgi_index index.php;
            include fastcgi.conf;
            }
}

#################  include  ###################

#    include block_ips.conf ;
#    include vhost/*.conf ;

# 强制域名访问对应域名的 conf
#    server {
#        listen 80 default ;
#        server_name _;
#        return 404;
#    }
}

最后 phpinfo(), 成功。

CentOS 6.5 搭建 PHP 环境(Nginx+MariaDB+PHP7)

更多 Nginx 相关教程见以下内容

CentOS 6.2 实战部署 Nginx+MySQL+PHP http://www.linuxidc.com/Linux/2013-09/90020.htm

使用 Nginx 搭建 WEB 服务器 http://www.linuxidc.com/Linux/2013-09/89768.htm

搭建基于 Linux6.3+Nginx1.2+PHP5+MySQL5.5 的 Web 服务器全过程 http://www.linuxidc.com/Linux/2013-09/89692.htm

CentOS 6.3 下 Nginx 性能调优 http://www.linuxidc.com/Linux/2013-09/89656.htm

CentOS 6.3 下配置 Nginx 加载 ngx_pagespeed 模块 http://www.linuxidc.com/Linux/2013-09/89657.htm

CentOS 6.4 安装配置 Nginx+Pcre+php-fpm http://www.linuxidc.com/Linux/2013-08/88984.htm

Nginx 安装配置使用详细笔记 http://www.linuxidc.com/Linux/2014-07/104499.htm

Nginx 日志过滤 使用 ngx_log_if 不记录特定日志 http://www.linuxidc.com/Linux/2014-07/104686.htm

Nginx 的详细介绍:请点这里
Nginx 的下载地址:请点这里

本文永久更新链接地址:http://www.linuxidc.com/Linux/2016-01/126949.htm

正文完
星哥说事-微信公众号
post-qrcode
 0
星锅
版权声明:本站原创文章,由 星锅 于2022-01-21发表,共计6189字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
【腾讯云】推广者专属福利,新客户无门槛领取总价值高达2860元代金券,每种代金券限量500张,先到先得。
阿里云-最新活动爆款每日限量供应
评论(没有评论)
验证码
【腾讯云】云服务器、云数据库、COS、CDN、短信等云产品特惠热卖中