CentOS使用yum安装lamp

Tue 08 October 2013
By dqw

LAMP

yum install httpd php php-mysql php-pecl-memcache php-gd php-mbstring php-mcrypt php-cli php-common php-pdo php-pear mysql-server

LNMP

# Nginx源的版本比较新,或者用EPEL源里的也可以但版本比较老
rpm -Uvh http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-0.el6.ngx.noarch.rpm

安装软件包

yum install nginx php-fpm php-mysql php-pecl-memcache php-gd php-mbstring php-mcrypt php-cli php-common php-pdo php-pear mysql-server

Nginx配置范例

#/etc/nginx/conf.d/default.conf

#
# The default server
#
server {
    listen       80 default_server;
    server_name  _;

    #charset koi8-r;

    #access_log  logs/host.access.log  main;

    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }

    error_page  404              /404.html;
    location = /404.html {
        root   /usr/share/nginx/html;
    }

    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/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 server 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  /usr/share/nginx/html$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;
    #}
}

手动启动服务

/etc/init.d/nginx start
/etc/init.d/php-fpm start
/etc/init.d/mysqld start

开机自启动

chkconfig nginx on
chkconfig php-fpm on
chkconfig mysqld on

开放端口

/sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT
/etc/rc.d/init.d/iptables save