LNMP服务器安装配置(Rhel+Nginx+PHP+MySQL)

本文涉及的产品
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
云数据库 RDS PostgreSQL,集群系列 2核4GB
简介:

1、关闭selinux、配置防火墙,开启80、3306端口

1
2
3
4
5
6
7
8
9
10
11
12
13
[root@localhost ~] # cp /etc/sysconfig/iptables /etc/sysconfig/iptablesbak
[root@localhost ~] # vim /etc/sysconfig/iptables
-A INPUT -i lo -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT
-A INPUT -j REJECT --reject-with icmp-host-prohibited
[root@localhost ~] # /etc/init.d/iptables restart
[root@localhost ~] # cp /etc/sysconfig/selinux /etc/sysconfig/selinuxbak
[root@localhost ~] # cat /etc/sysconfig/selinux|grep -v "#"
SELINUX=disabled
SELINUXTYPE=targeted 
[root@localhost ~] #

2、安装nginx

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@localhost ~] # rpm -e --nodeps `rpm -qa|egrep -i "httpd|php"`  #删除系统自带的软件包
[root@localhost ~] # wget   #下载、安装第三方yum源
[root@localhost ~] # sh ./atomic   #安装
Do you agree to these terms? ( yes /no ) [Default:  yes yes
Configuring the [atomic] yum archive  for  this system 
Installing the Atomic GPG keys: OK
OK
Enable repo by default? ( yes /no ) [Default:  yes ]: 
The Atomic Rocket Turtle archive has now been installed and configured  for  your system
The following channels are available:
[root@localhost ~] # yum check-update   #更新yum源
[root@localhost ~] # yum -y install nginx 
[root@localhost ~] # service nginx start
Starting nginx:                                            [  OK  ]
[root@localhost ~] #

3、安装MySQL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[root@localhost ~] # yum install mysql mysql-server -y
[root@localhost ~] # chkconfig mysqld on
[root@localhost ~] # /etc/init.d/mysqld start
[root@localhost ~] # cp /usr/share/mysql/my-medium.cnf /etc/my.cnf 
cp : overwrite ` /etc/my .cnf'? y
[root@localhost ~] # mysql_secure_installation   #为root账户设置密码
Enter current password  for  root (enter  for  none): 
OK, successfully used password, moving on...
Set root password? [Y /n ] Y
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..
  ... Success!
  Remove anonymous  users ? [Y /n ] Y  
  ... Success!
  Disallow root login remotely? [Y /n ] Y
  ... Success!
  Remove  test  database and access to it? [Y /n ] Y
  - Dropping  test  database...
  ... Success!
  - Removing privileges on  test  database...
  ... Success!
  Reload privilege tables now? [Y /n ] Y
  ... Success!
  Thanks  for  using MySQL!
  [root@localhost ~] # service mysqld restart

4、安装PHP5

1
2
3
4
5
6
[root@localhost ~] # yum install php php-fpm -y
[root@localhost ~] # yum install php-mysql php-gd libjpeg* php-imap php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-mcrypt  php-bcmath php-mhash libmcrypt -y  #安装PHP组件,使 PHP5 支持 MySQL
[root@localhost ~] # chkconfig php-fpm on
[root@localhost ~] # /etc/init.d/php-fpm start
Starting php-fpm:                                          [  OK  ]
[root@localhost ~] #

5、配置nginx支持php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[root@localhost ~] # cp /etc/nginx/nginx.conf /etc/nginx/nginx.confbak
[root@localhost ~] # vim /etc/nginx/nginx.conf
user              nginx nginx;     #修改nginx运行账号为:nginx组的nginx用户
worker_processes  1;
[root@localhost ~] # cp /etc/nginx/conf.d/default.conf /etc/nginx/conf.d/default.confbak
[root@localhost ~] # vim /etc/nginx/conf.d/default.conf
     location / {
         root    /usr/share/nginx/html ;
         index  index.php index.html index.htm;    #增加index.php
         # example
         #ModSecurityEnabled on;
         #ModSecurityConfig /etc/nginx/modsecurity.conf;
     }
      location ~ \.php$ {     #取location的注释,并将fastcgi_param行的参数,改为$document_root$fastcgi_script_name,或者使用绝对路径
         root           html;
         fastcgi_pass   127.0.0.1:9000;
         fastcgi_index  index.php;
         fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
         include        fastcgi_params;
     }   
  [root@localhost ~] # service nginx restart
Stopping nginx:                                            [  OK  ]
Starting nginx:                                            [  OK  ]
[root@localhost ~] #

6、php配置

1
2
3
4
5
6
7
8
[root@localhost ~] # cp /etc/php.ini /etc/php.inibak
[root@localhost ~] # vim /etc/php.ini
  878  date .timezone = PRC
  314 disable_functions = passthru, exec ,system,chroot,scandir, chgrp , chown ,shell_exec,proc_open,proc_get_status, in      i_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink, symlink ,popepassthru,stream_socket_server,escapesh     ellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_c     termid,posix_get_last_error,posix_getcwd, posix_getegid,posix_geteuid,posix_getgid, posix_getgrgid,posix_ge     tgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid, posix_getppid,posix_getpwna     m,posix_getpwuid, posix_getrlimit, posix_getsid,posix_getuid,posix_isatty, posix_kill,posix_mkfifo,posix_se     tegid,posix_seteuid,posix_setgid, posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_     ttyname,posix_uname    #PHP禁用的函数,如果某些程序需要用到这个函数,可以删除,取消禁用。
   375 expose_php = Off     #禁止显示php版本的信息
   211 short_open_tag = ON    #支持php短标签
   308 open_basedir = .: /tmp/   #设置表示允许访问当前目录(即PHP脚本文件所在之目录)和/tmp/目录,可以防止php木马跨站,如果改了之后安装程序有问题(例如:nginx可能网站根目录下的文件会提示Access Denied),可以注销此行,或者直接写上程序的目录open_basedir = /usr/share/nginx/html/:/tmp/
   [root@localhost ~] #

7、配置php-fpm

1
2
3
4
5
6
[root@localhost ~] # cp /etc/php-fpm.d/www.conf /etc/php-fpm.d/www.confbak
[root@localhost ~] # vim /etc/php-fpm.d/www.conf
user = nginx
; RPM: Keep a group allowed to write  in  log  dir .
group = nginx
[root@localhost ~] #

8、测试

1
2
3
4
5
6
7
8
9
10
11
12
13
[root@localhost ~] # cd /usr/share/nginx/html/
[root@localhost html] # vim index.php
<?php
phpinfo();
?>
~   
[root@localhost html] # service nginx restart
Stopping nginx:                                            [  OK  ]
Starting nginx:                                            [  OK  ]
[root@localhost html] # service php-fpm restart
Stopping php-fpm:                                          [  OK  ]
Starting php-fpm:                                          [  OK  ]
[root@localhost html] #

在客户端浏览器输入服务器IP地址,可以看到相关的配置信息(无法查看可以将php.ini中expose_php设置为on、open_basedir注释掉,或者直接写上程序的目录)! 说明lnmp配置成功!



本文转自 justin_peng 51CTO博客,原文链接:http://blog.51cto.com/ityunwei2017/1733287,如需转载请自行联系原作者

相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
4天前
|
关系型数据库 MySQL 数据库
【MySQL基础篇】MySQL概述、Windows下载MySQL8.0超详细图文安装教程
在这一章节,主要介绍两个部分,数据库相关概念及MySQL数据库的介绍、下载、安装、启动及连接。接着,详细描述了MySQL 8.0的版本选择与下载,推荐使用社区版(免费)。安装过程包括自定义安装路径、配置环境变量、启动和停止服务、以及客户端连接测试。此外,还提供了在同一台电脑上安装多个MySQL版本的方法及卸载步骤。最后,解释了关系型数据库(RDBMS)的特点,即基于二维表存储数据,使用SQL语言进行操作,格式统一且便于维护。通过具体的结构图展示了MySQL的数据模型,说明了数据库服务器、数据库、表和记录之间的层次关系。
【MySQL基础篇】MySQL概述、Windows下载MySQL8.0超详细图文安装教程
|
10天前
|
关系型数据库 MySQL 数据库
docker高级篇(大厂进阶):安装mysql主从复制
docker高级篇(大厂进阶):安装mysql主从复制
74 24
|
4天前
|
NoSQL 关系型数据库 MySQL
Linux安装jdk、mysql、redis
Linux安装jdk、mysql、redis
72 7
|
26天前
|
存储 编解码 应用服务中间件
使用Nginx搭建流媒体服务器
本文介绍了流媒体服务器的特性及各种流媒体传输协议的适用场景,并详细阐述了使用 nginx-http-flv-module 扩展Nginx作为流媒体服务器的详细步骤,并提供了在VLC,flv.js,hls.js下的流媒体拉流播放示例。
122 1
|
1月前
|
负载均衡 监控 应用服务中间件
配置Nginx反向代理时如何指定后端服务器的权重?
配置Nginx反向代理时如何指定后端服务器的权重?
65 4
|
1月前
|
SQL 关系型数据库 MySQL
go语言数据库中mysql驱动安装
【11月更文挑战第2天】
67 4
|
1月前
|
运维 关系型数据库 MySQL
安装MySQL8数据库
本文介绍了MySQL的不同版本及其特点,并详细描述了如何通过Yum源安装MySQL 8.4社区版,包括配置Yum源、安装MySQL、启动服务、设置开机自启动、修改root用户密码以及设置远程登录等步骤。最后还提供了测试连接的方法。适用于初学者和运维人员。
189 0
|
弹性计算 安全 应用服务中间件
ECS动手搭建Nginx
在ECS的centos7上搭建一个Nginx
2074 7
ECS动手搭建Nginx
|
4天前
|
人工智能 JSON Linux
利用阿里云GPU加速服务器实现pdf转换为markdown格式
随着AI模型的发展,GPU需求日益增长,尤其是个人学习和研究。直接购置硬件成本高且更新快,建议选择阿里云等提供的GPU加速型服务器。
利用阿里云GPU加速服务器实现pdf转换为markdown格式
|
3天前
|
开发框架 缓存 .NET
阿里云轻量应用服务器、经济型e、通用算力型u1实例怎么选?区别及选择参考
在阿里云目前的活动中,价格比较优惠的云服务器有轻量应用服务器2核2G3M带宽68元1年,经济型e实例2核2G3M带宽99元1年,通用算力型u1实例2核4G5M带宽199元1年,这几个云服务器是用户关注度最高的。有的新手用户由于是初次使用阿里云服务器,对于轻量应用服务器、经济型e、通用算力型u1实例的相关性能并不是很清楚,本文为大家做个简单的介绍和对比,以供参考。