Centos7安装LNMP

这篇文章主要介绍了Centos7安装LNMP的方法和步奏,十分的简洁明了,推荐给大家,有需要的小伙伴可以参考下

1. 安装Nginx

#yum install nginx      #配置文件处于/etc/nginx
#systemctl start nginx   #启动nginx
#systemctl enable nginx.service  # 设置为开机启动
 
#systemctl status firewalld  #检查防火墙,如果为active (running),则
#vim /etc/firewalld/zones/public.xml   # 在zone
 
<zone>
…
<service name=”nginx”/>
<zone>
#systemctl reload firewalld

安装Mysql(not MariaDB)

#rpm -Uvh http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
#yum repolist enabled | grep “mysql.*-community.*”
#yum -y install mysql-community-server
 
#yum -y install mysql-community-server   #安装社区版
#systemctl start mysqld                  # 启动mysql
#mysql_secure_installation              # mysql安全安装,输入root密码,一路y
3. 安装PHP
#yum install php-fpm php-mysql
#systemctl start php-fpm        # 启动php-fpm
#systemctl enable php-fpm      # 设置开机启动
 
#mkdir /var/www
#chown -R apache:apache /var/www
修改Nginx的配置文件:在 /etc/nginx/conf.d 目录下新建 mynginx.conf

server {
listen 8000;
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
 
location ~ \.php$ {
root /usr/www;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
然后 在/usr/www 目录中创建 phpinfo.php
<?php echo phpinfo(); ?>
外部访问:http://111.231.25.220/:8000/phpinfo.php
看到phpinfo信息则安装正确。




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值