15158846557 在线咨询 在线咨询
15158846557 在线咨询
所在位置: 首页 > 营销资讯 > 网站运营 > 网站服务器怎么搭建?centos7.5搭建LNMP (详细+实战)

网站服务器怎么搭建?centos7.5搭建LNMP (详细+实战)

时间:2023-07-11 11:42:01 | 来源:网站运营

时间:2023-07-11 11:42:01 来源:网站运营

网站服务器怎么搭建?centos7.5搭建LNMP (详细+实战):

目录:

1)LNMP简介

2)安装nginx1.4

3)安装php7.2

4)安装mariadb10.2

5)总结

一、LNMP简介

L:linux,是目前最流行的免费操作系统,版本有很多,rehat,debian,ubuntu,centos等等,我用的是centos7.5。

N:nginx,是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器。nginx市场份额越来越大,这里也可以选择Apache,老大哥,宝刀未老。

M:Mysql是一个小型关系型数据库管理系统,我觉得已经不小了,对于绝大多数的情况,够用了,这里我用的mariadb10.2,mariadb和mysql都是出自同个作者,这里不讲它们的故事。

P:世界上最好的编程语言,一种在服务器端执行的嵌入HTML文档的脚本语言。

linux+nginx+mysql/mariadb+php,这四个开源项目组在一起,成为一个免费、高效、扩展性强的网站服务系统,这是一个网站服务器架构,学会它就能打通任督二脉,无忌,跟着为师走。

二、安装nginx

1. 防火墙设置,允许http,https通信。

firewall-cmd --zone=public --add-service=http --permanent //允许http通信

firewall-cmd --zone=public --add-service=https --permanent  //允许https通信

firewall-cmd --zone=public --add-port=80/tcp --permanent //打开80端口

firewall-cmd --zone=public --add-port=443/tcp --permanent //打开443端口

firewall-cmd --zone=public --add-port=8080/tcp --permanent //打开8080端口

firewall-cmd --reload //重新加载配置

2. 下载基本的库文件

yum intall pcre pcre-devel yum install zlib zlib-devel yum install openssl; openssl-devel

3. 配置nginx官方源,下载和安装

rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

yum install nginx //安装nginx

4. 了解基本配置文件

主配置文件:/etc/nginx/nginx.conf

默认配置文件:/etc/nginx/conf.d/default.conf

我们编辑一下default.conf这个文件。

注意,这里server_name 我写的是我这台电脑的局域网地址及访问端口,你可以设置其它或者默认不变,如果是默认的话浏览器那里不需要输入端口号。

nginx
5. 局域网访问测试一下。

nginx运行成功
到这里nginx安装使用成功,如果你这里无法访问,绝大多数情况下是SELINUX和防火墙的问题。注意,如果你是云服务器的话是需要在服务商后台那里添加安全组策略的。

三、安装php7.2

1. 配置php7.2yum源

rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

2. 安装php7.2及一些扩展工具

yum install php72w php72w-cli php72w-common php72w-devel php72w-embedded php72w-fpm php72w-gd php72w-mbstring php72w-mysqlnd php72w-opcache php72w-pdo php72w-xml

3. 启动php-fpm

systemctl php-fpm //启动

systemctl enable php-fpm //设置开机启动

注意,nginx是通过php-fpm处理php文件的。

4. 让nginx支持php,红色方框就是改的地方。

vim /etc/nginx/conf.d/default.conf

nginx支持php
运行一个php文件

vim /usr/share/nginx/html/index.php //编辑文件

<?php phpinfo();?>

保存,在浏览器访问试一下。

phpinfo()

四、安装数据库mariadb10.2

1. 卸载系统自带的数据库

首先,centos7.5里面自带的mariadb5.5版本的,所以第一步,我先卸载掉很老老老老老老的版本。

rpm -qa|grep mariadb

yum remove mariadb-*文件

它会删除一些依赖文件,不用担心。

2. 配置mariadb10.2yum源

vim /etc/yum.d.repos.d/MariaDB.repo

# MariaDB 10.2 CentOS repository list - created 2019-01-08 08:30 UTC

# http://downloads.mariadb.org/mariadb/repositories/

[mariadb] name = MariaDB

baseurl = http://yum.mariadb.org/10.2/centos7-amd64

gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB

gpgcheck=1

以上配置的源是mariadb官方源,下载速度,一个星期的时间是完全可以下载下来的。

如果你想一根烟的时间就能完成下载,替换为国内源:

[mariadb] name = MariaDB

baseurl = https://mirrors.ustc.edu.cn/mariadb/yum/10.2/centos7-amd64

gpgkey=https://mirrors.ustc.edu.cn/mariadb/yum/RPM-GPG-KEY-MariaDB

gpgcheck=1

保存退出。

yum clean&&yum update //更新一下yum源

yum install MariaDB-client MariaDB-server //安装

systemctl start mariadb

systemctl enable mariadb //设置开机启动

OK,mariadb安装完成。

3. 初始化mariadb

首先使用mysql_secure_installation命令进行配置。

根据自己的要求配置,可以按照我的图片走

Set root password? [Y/n]

New password:

Re-enter new password:

其他配置

Remove anonymous users? [Y/n]

Disallow root login remotely? [Y/n]

Remove test database and access to it? [Y/n]

Reload privilege tables now? [Y/n]

mariadb初始化
登录

mysql -uroot -p //本地登录

mariadb登录成功
登录成功

4. 简单配置mariadb

先配置服务端,配置文件:/etc/my.cnf.d/server.cnf

vim /etc/my.cnf.d/server.cnf

在[mysqld]标签下添加以下内容

init_connect='SET collation_connection = utf8_unicode_ci'

init_connect='SET NAMES utf8'

character-set-server=utf8

collation-server=utf8_unicode_ci

skip-character-set-client-handshake

保存退出

再配置客户端,配置文件:/etc/my.cnf.d/mysql-clients.cnf

vim /etc/my.cnf.d/mysql-clients.cnf

在[mysql]中添加

default-character-set=utf8 保存退出

重启mariadb服务

systemctl restart mariadb

之后登录mariadb,输入下面代码,查看一下我们的设置有没有成功。

show variables like "%character%";show variables like "%collation%";

mariadb字符配置
5. 测试mariadb

现在nginx,php,mariadb都有了,我们来做个简单的测试,写个简单的代码,访问数据库。

vim /usr/share/nginx/html/index.php

代码:

if(!$link){ e

cho "Game Over." .PHP_EOL;

echo "Debugging errno:" .mysqli_connect_errno() .PHP_EOL;

echo "Debugging error:" .mysqli_connect_error() .PHP_EOL;

exit;

}

else{

echo "Very Good" .PHP_EOL;

echo "Host information:" .mysqli_get_host_info($link) .PHP_EOL;

}

mysqli_close($link);

我们在浏览器访问看看。

php connect mariadb
有些朋友写的不是localhost,而是127.0.0.1,可能会出现Permission denied权限问题,如下图。

permission denied
这是因为selinux拦截了,我们设置以下就可以。

setsebool httpd_can_network_connect_db = on

用localhost比127.0.0.1在安全及性能上都要好,感兴趣的朋友可以阅读相关文档。

五、总结

到这里,LNMP就搭建成功了,我第一次配置的时候遇到很多权限问题,其实也是好事。从问题出现,到分析问题,再到解决问题,你会收获很多知识,那些问题让你的脑袋不断的思考,最后,任督二脉打通了。

喜欢的话就关注我吧。

关键词:详细,实战,服务

74
73
25
news

版权所有© 亿企邦 1997-2025 保留一切法律许可权利。

为了最佳展示效果,本站不支持IE9及以下版本的浏览器,建议您使用谷歌Chrome浏览器。 点击下载Chrome浏览器
关闭