搭建LNMP服务器


一键安装全配置:

LNMP官网
例如远程连接运行:
wget http://soft.vpser.net/lnmp/lnmp1.7.tar.gz -cO lnmp1.7.tar.gz && tar zxf lnmp1.7.tar.gz && cd lnmp1.7 && ./install.sh lnmp
上面是1.7版本,按照提示安装建议安装较新版本即可。

手动搭建:

前提要求:

80端口已开放
已在实例安全组的入方向添加安全组规则并放行80端口

本教程示例步骤适用于以下软件版本:

操作系统:公共镜像CentOS 7.2 64位
Nginx版本:Nginx 1.16.1
MySQL版本:MySQL 5.7.28
PHP版本:PHP 7.0.33


1:远程连接Linux:


可使用putty或Xshell或服务器商提供的远程连接


2:关闭防火墙

2.1首先查看防火墙状态:运行systemctl status firewalld命令
如果防火墙的状态参数是inactive,则防火墙为关闭状态。
如果防火墙的状态参数是active(running)绿色字体突出,则防火墙为开启状态。本示例中防火墙为开启状态,因此需要关闭防火墙。
2.2 关闭防火墙。如果防火墙为关闭状态可以忽略此步骤。
systemctl stop firewalld(临时关闭) systemctl disable firewalld(永久关闭,如果您想重新开启防火墙,请参见firewalld官网信息。)


3.关闭SELinux

3.1运行getenforce命令查看SELinux的当前状态。
如果SELinux状态参数是Disabled,则SELinux为关闭状态。
如果SELinux状态参数是Enforcing,则SELinux为开启状态。本示例中SELinux为开启状态,因此需要关闭SELinux。
3.2关闭SELinux。如果SELinux为关闭状态可以忽略此步骤。
setenforce 0 (临时关闭)
如果您想永久关闭SELinux,运行命令vim /etc/selinux/config编辑SELinux配置文件。回车后,把光标移动到SELINUX=enforcing这一行,按i键进入编辑模式,修改为 SELINUX=disabled,按Esc键,然后输入:wq并按Enter键以保存并关闭SELinux配置 文件


4.安装Nginx

4.1安装Nginx:yum -y install nginx
4.2 运行以下命令查看Nginx版本:nginx -v (正常返回nginx version:nginx/1.16.1,版本号可能会变)


5.安装MySQL

5.1更新YUM源:rpm -Uvh http://dev.mysql.com/get/mysql57-community-release-el7-9.noarch.rpm
5.2安装MySQL:yum -y install mysql-community-server(如果您使用的操作系统内核版本为el8,可能会提示报错信息No match for argument。您需要先运行命令yum module disable mysql禁用默认的mysql模块,再安装MySQL。)
5.3查看MySQL版本号:mysql -V,正常返回(mysql Ver 14.14 Distrib 5.7.28, for Linux (x86_64) using EditLine wrapper)版本号可能不同。
5.4启动MySQL:systemctl start mysqld
5.5设置MySQL开机启动:systemctl enable mysqld
systemctl daemon-reload


6.安装PHP

6.1更新YUM源
6.1.1首先添加epel源(容器):

yum install \
https://repo.ius.io/ius-release-el7.rpm \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

6.2.2 进一步添加Webtatic源
rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
6.2安装PHP:yum -y install php70w-devel php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-pdo.x86_64 php70w-mysqlnd php70w-fpm php70w-opcache php70w-pecl-redis php70w-pecl-mongodb (以上70为版本号PHP7.0可更改)
6.3查看PHP版本:php -v 正常返回
PHP 7.0.33 (cli) (built: Dec 6 2018 22:30:44) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.0.0, Copyright (c) 1998-2017 Zend Technologies
with Zend OPcache v7.0.33, Copyright (c) 1999-2017, by Zend Technologies


7.配置Nginx

7.1首先备份Nginx:cp /etc/nginx/nginx.conf /etc/nginx/nginx.conf.bak
7.2添加Nginx对PHP的支持
7.2.1打开Nginx配置文件:vim /etc/nginx/nginx.conf
7.2.2按 i 进入编辑模式
7.2.3 在里面server大括号内添加下列配置信息
#除下面提及的需要添加的配置信息外,其他配置保持默认值即可。

location / {
#在location大括号内添加以下信息,配置网站被访问时的默认首页
index index.php index.html index.htm;
}
#添加下列信息,配置Nginx通过fastcgi方式处理您的PHP请求
location ~ .php$ {
root /usr/share/nginx/html;    #将/usr/share/nginx/html替换为您的网站根目录,本教程使用/usr/share/nginx/html作为网站根目录
fastcgi_pass 127.0.0.1:9000;   #Nginx通过本机的9000端口将PHP请求转发给PHP-FPM进行处理
fastcgi_index index.php;
fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
include fastcgi_params;   #Nginx调用fastcgi接口处理PHP请求
}

7.2.4 按下Esc键后,输入:wq并回车以保存并关闭配置文件。
7.3启动Nginx服务并设置开机启动
systemctl start nginx
systemctl enable nginx


8.配置MySQL

8.1运行以下命令查看/var/log/mysqld.log文件,获取并记录root用户的初始密码。
grep 'temporary password' /var/log/mysqld.log
正常返回:2020-06-23T14:57:47.535748Z 1 [Note] A temporary password is generated for root@localhost: p0/G28g>lsHD (具体密码可能不同)
8.2运行以下命令配置MySQL的安全性:mysql_secure_installation
8.2.1重置root账号密码

Enter password for user root: #输入上一步获取的root用户初始密码
The 'validate_password' plugin is installed on the server.
The subsequent steps will run with the existing configuration of the plugin.
Using existing password for root.
Estimated strength of the password: 100
Change the password for root ? (Press y|Y for Yes, any other key for No) : Y  #是否更改root用户密码,输入Y
New password: #输入新密码,长度为8至30个字符,必须同时包含大小写英文字母、数字和特殊符号。特殊符号可以是()` ~!@#$%^&*-+=|{}[]:;‘<>,.?/
Re-enter new password: #再次输入新密码
Estimated strength of the password: 100
Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : Y

8.2.2 输入Y删除匿名用户账号.

By default, a MySQL installation has an anonymous user, allowing anyone to log into MySQL without having to have a user account created for them.               This is intended only for testing, and to make the installation go a bit                 smoother. You should remove them before moving into a production                 environment.
Remove anonymous users? (Press y|Y for Yes, any other key for No) : Y  #是否删除匿名用户,输入Y
Success.

8.2.3输入Y禁止root账号远程登录(可选)

Disallow root login remotely? (Press y|Y for Yes, any other key for No) : Y #禁止root远程登录,输入Y
Success.

8.2.4 输入Y删除test库以及对test库的访问权限。(可选)

Remove test database and access to it? (Press y|Y for Yes, any other key for No) : Y #是否删除test库和对它的访问权限,输入Y
- Dropping test database...
Success.

8.2.5 输入Y重新加载授权表。

Reload privilege tables now? (Press y|Y for Yes, any other key for No) : Y #是否重新加载授权表,输入Y
Success.
All done!

9.配置PHP

9.1新建phpinfo.php文件,用于展示PHP信息。
9.1.1新建phpinfo.php文件vim <网站根目录>/phpinfo.php #将<网站根目录>替换为您配置的网站根目录。(它在您在nginx.conf文件中location ~ .php$大括 号内配置的root值下)
9.1.2按i进入编辑模式,输入:<?php echo phpinfo(); ?>,按Esc键后,输入:wq并回车以保存并关闭配置文件。
9.2启动PHP-FPM:systemctl start php-fpm
9.3设置PHP-FPM开机自启动:systemctl enable php-fpm


10.测试

10.1浏览器地址栏输入服务器公网IP地址,回车。如果看到nginx欢迎页面即安装成功
10.2浏览器地址栏输入IP地址/phpinfo.php。如果看到PHP Version 7.0.33版本号及配置信息即PHP配置成功
10.3删除phpinfo.php文件(建议):rm -rf <网站根目录>/phpinfo.php #将<网站根目录>替换为您在nginx.conf中配置的网站根目录


11.安装phpmyadmin

11.1下载安装包 wget https://files.phpmyadmin.net/phpMyAdmin/4.8.3/phpMyAdmin-4.8.3-all-languages.zip //去到官方地址,在右侧有个下载按钮,鼠标右键点击, “复制链接地址”)
11.2解压安装包 unzip phpMyAdmin-4.8.3-all-languages.zip(没有unzip用 yum install unzip 下载一个或者wget那里用 .tar.gz后缀的,解压命令头换成 tar zxvf
11.3复制phpmyadmin到网站根目录下:cp -r phpMyAdmin-4.8.3-all-languages/* /这里填你的网站根目录
11.4配置
cd到 phpMyAdmin下的libraries中, vim config.default.php 修改三处配置

$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 这里填mysql密码;

11.5测试,浏览器地址搜索 你的IP地址/phpmyadmin


文章作者: HuangQiCheng
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 HuangQiCheng !
  目录