搭建Web服务器

搭建LNMP环境
1)安装Linux
2)安装Nginx

[root@VM_110_37_centos ~]# yum install -y nginx

修改 /etc/nginx/conf.d/default.conf,去除对 IPv6 地址的监听,可参考下面的示例:

[root@VM_110_37_centos ~]# vi /etc/nginx/conf.d/default.conf

示例代码:/etc/nginx/conf.d/default.conf

server {
    listen       80 default_server;
    # listen       [::]:80 default_server;
    server_name  _;
    root         /usr/share/nginx/html;

    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;

    location / {
    }

    error_page 404 /404.html;
        location = /40x.html {
    }

    error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }

}

CentOS 6 不支持 IPv6,需要取消对 IPv6 地址的监听,否则 Nginx 不能成功启动。

启动 Nginx

[root@VM_110_37_centos ~]# nginx

将 Nginx 设置为开机自动启动

[root@VM_110_37_centos ~]# chkconfig nginx on

3)安装MySQL

[root@VM_110_37_centos ~]# yum install -y mysql-server

启动 MySQL 服务:

[root@VM_110_37_centos ~]# service mysqld restart

设置 MySQL 账户密码

[root@VM_110_37_centos ~]# /usr/bin/mysqladmin -u root password 'root'

将 MySQL 设置为开机自动启动:

[root@VM_110_37_centos ~]# chkconfig mysqld on

4)安装 PHP

[root@VM_110_37_centos ~]# yum install -y php-fpm php-mysql

启动 PHP-FPM 进程

[root@VM_110_37_centos ~]# service php-fpm start

启动之后,可以使用下面的命令查看 PHP-FPM 进程监听哪个端口

[root@VM_110_37_centos ~]# netstat -nlpt | grep php-fpm

PHP-FPM 默认监听 9000 端口

把 PHP-FPM 也设置成开机自动启动:

[root@VM_110_37_centos ~]# chkconfig php-fpm on

CentOs 6 默认已经安装了 PHP-FPM 及 PHP-MYSQL,上面命令执行的可能会提示已经安装。

至此Web服务器搭建完成

内容参考腾讯云开发者实验室相关教程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值