zoukankan      html  css  js  c++  java
  • centos6 yum安装nginx、phpfpm

    1、

     

    使用Nginx官方源,Epel扩展库和remi源,remi源基于epel,必须先安装epel源,remi包含php-fpm,mysql-server5.5,如果只需要php-fpm可以单独安装php-fpm后禁用此源.
    安装Nginx源:

    rpm -ivh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm

    安装EPEL源:

    (64位系统) rpm -ivh http://download.fedora.redhat.com/pub/epel/6/x86_64/epel-release-6-5.noarch.rpm
    (32位系统) rpm -ivh http://download.fedora.redhat.com/pub/epel/6/i386/epel-release-6-5.noarch.rpm

    安装REMI源:

    rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

    开启REMI,编辑 /etc/yum.repos.d/remi.repo

    修改 enable=1
    yum -y install nginx mysql-server  php-fpm php-cli php-pdo php-mysql php-mcrypt php-mbstring php-gd php-tidy php-xml php-xmlrpc php-pear php-pecl-memcache php-eaccelerator

    linux可能会提示没有libmcrypt.so, 解决办法如下:

     

     rpm -ivh http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.i686.rpm
     yum clean all
     yum makecache
    yum install libmcrypt
    2、设置nginx、php-fpm开机启动:
    
    # chkconfig nginx on
    # chkconfig php-fpm on
    注:默认安装启动php-fpm时,出现如下错误:
    
    正在启动 php-fpm:[28-Nov-2011 08:11:01] ERROR: [pool www] cannot get uid for user 'apache'
    解决办法:
    
    # vi /etc/php-fpm.d/www.conf
    找到以下两行:
    user = apache
    group = apache
    将其中的apache都改为nginx。
    
    4、开启80端口(默认是关闭的):
    # /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
    # /etc/rc.d/init.d/iptables save
    # /etc/init.d/iptables restart
    5、修改nginx配置文件,启动nginx和php-fpm:
    # vi /etc/nginx/conf.d/default.conf
    更改网站的根目录,添加php默认文件:
    
    location / {
    root   /usr/share/nginx/html;
    index  index.php index.html index.htm;
    }
    修改到下代码,添加php支持:
    
    # location ~ \.php$ {
    #    root      your/web/path;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /your/web/path$fastcgi_script_name;
    #    include        fastcgi_params;
    #}
    删除上面所有的#和其中一行(root这行),将/your/web/paht修改为web存放目录,如/var/www/html。启动nginx和php-fpm:
    
    # service nginx start
    # service php-fpm start
    
  • 相关阅读:
    批处理显示系统信息与硬件信息
    批处理获取操作系统版本信息
    k2 4.6.9安装记录-够复杂了
    NAT路由器打洞原理
    function与感叹号
    leetcode 83. Remove Duplicates from Sorted List
    leetcode 53. Maximum Subarray
    leetcode 101. Symmetric Tree
    leetcode 191. Number of 1 Bits
    胜利的欲望不会给你胜利
  • 原文地址:https://www.cnblogs.com/xinyuyuanm/p/2980852.html
Copyright © 2011-2022 走看看