centos7搭建lnmp
一、准备
1. 修改网络yum源
先将系统自带的yum配置文件重命名或删除,然后下载下面两个文件
阿里云:http://mirrors.aliyun.com/repo/Centos-7.repo
eprl扩展:http://mirrors.aliyun.com/repo/epel-7
下载完之后,需要使用命令清除原来的yum缓存,使用新的配置文件建立新的缓存
yum clean all #清除原来的缓存
yum makecache #建立新的缓存列表
yum update #将所有可更新的软件更新
2. 安装编译工具和依赖软件
yum -y install gcc gcc-c++ pcre-devel openssl openssl-devel zlib-devel ncurses-devel cmake bison libxml2-devel libpng-devel
3. nginx,mysql,php软件源码包下载地址
nginx:http://nginx.org/en/download.html
mysql:https://dev.mysql.com/downloads/mysql/
php:http://www.php.net/
版本选用:
nginx: 1.16.* #选用软件的稳定版本即可
mysql: 5.5.* #5.5以上版本需要1G以上的内存,否则无法安装
php: 7.3.* #我使用的是php7
注:每次安装LNMP时,软件的小版本都不一样,官方会对其大版本下的小版本进行覆盖式更新,请按照下载版本进行安装。
二、源码软件包安装
1. nginx
nginx是一款轻量级的web服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,在BSD-like协议下发行。特点是占用内存少,并发能力强。
1.1 下载nginx源码包
[root@centos2 /lnmp]# wget http://nginx.org/download/nginx-1.16.1.tar.gz
1.2 创建用于运行nginx的用户
[root@centos2 /lnmp]# useradd -r -s /sbin/nologin nginx
1.3 解压缩nginx并安装
[root@centos2 /lnmp]# tar -zxf nginx-1.16..tar.gz
[root@centos2 /lnmp/nginx-1.16.]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module --with-http_ssl_module
[root@centos2 /lnmp/nginx-1.16.]# make && make install
1.4 上传编写好的nginx启动脚本
注:先检查文件中是否有字符集问题
#################################Nginx启动管理脚本##################################
#!/bin/bash
#Author:nanshan
#chkconfig:
#description: nginx server control tools ngxc="/usr/local/nginx/sbin/nginx"
pidf="usr/local/nginx/logs/nginx.pid"
ngxc_fpm="/usr/local/php/sbin/php-fpm"
pidf_fpm="/usr/local/php/var/run/php-fpm.pid"
case "$1" in
start)
$ngxc -t &> /dev/null
if [ $? -eq ];then
$ngxc
$ngxc_fpm
echo "nginx service start success!"
else
$ngxc -t
fi
;;
stop)
kill -s QUIT $(cat $pidf)
kill -s QUIT $(cat $pidf_fpm)
echo "nginx service stop success!"
;;
restart)
$ stop
$ start
;;
reload)
$ngxc -t &> /dev/null
if [ $? -eq ];then
kill -s HUP $(cat $pidf)
kill -s HUP $(cat $pidf_fpm)
echo "reload nginx config success!"
else
$ngxc -t
fi
;;
*)
echo "please input stop|start|restart|reload."
exit
esac
2. MySQL
下载:https://dev.mysql.com/downloads/mysql/
选择:Looking for previous GA versions?
选择:Select Version:按照自己要求选择
Select Operating System: Source Code
Select OS Version: Generic Linux
格式:mysql-N.N.NN.tar.gz
[root@centos2 /lnmp/nginx-1.16.]# wget https://cdn.mysql.com//Downloads/MySQL-5.5/mysql-5.5.62.tar.gz
2.1 创建运行mysql的用户
[root@centos2 /lnmp]# useradd -r -s /sbin/nologin mysql
2.2 解压缩mysql并安装
[root@centos2 /lnmp]# tar -zxvf mysql-5.5..tar.gz
[root@centos2 ~]# cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql -DMYSQL_UNIX_ADDR=/tmp/mysql.sock -DEXTRA_CHARSETS=all -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_MYISAM_STORAGE_ENGINE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_MEMORY_STORAGE_ENGINE=1 -DWITH_READLINE=1 -DENABLED_LOCAL_INFILE=1 -DMYSQL_USER=mysql -DMYSQL_TCP_PORT=3306
[root@centos2 ~]# make && make install
[root@centos2 ~]# ln -s /usr/local/mysql/bin/* /usr/local/bin/
2.3 修改安装后的目录权限
[root@centos2 ~]# cd /usr/local/mysql
[root@centos2 ~]# chown -R root .
[root@centos2 ~]# chown -R mysql data
2.4 生成mysql配置文件
[root@centos2 ~]# cp -a /lnmp/mysql--5.62/support-files/my-medium.cnf /etc/my.cnf
2.5 初始化,生成授权表
[root@centos2 ~]# cd /usr/local/mysql
[root@centos2 ~]# ./scripts/mysql_install_db --user=mysql
#初始化成功标志:两个OK
2.6 生成mysql的启动和自启动脚本
[root@centos2 ~]# cd /lnmp/mysql-5.5./support-files/ [root@centos2 /lnmp/mysql-5.5./support-files]# cp -a mysql.server /etc/init.d/mysqld [root@centos2 /etc/init.d]# chmod +x mysqld [root@centos2 /etc/init.d]# chkconfig --add mysqld
[root@centos2 /etc/init.d]# chkconfig mysqld on [root@centos2 /etc/init.d]# systemctl start mysqld
[root@centos2 /etc/init.d]# systemctl status mysqld
2.7 给mysql的root用户设置密码
[root@centos2 /usr/local/mysql]# mysqladmin -uroot password
[root@centos2 /usr/local/mysql]# mysql -uroot -p
Enter password:
3. PHP
[root@centos2 /lnmp]# wget https://www.php.net/distributions/php-7.3.12.tar.gz
3.1 解压缩并安装
[root@centos2 /lnmp/php-7.3.]# tar -zxf php-7.3..tar.gz
[root@centos2 /lnmp/php-7.3.]# ./configure --prefix=/usr/local/php/ --with-config-file-path=/usr/local/php/etc/ --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-soap --enable-mbstring=all --enable-sockets --with-pdo-mysql=/usr/local/mysql --with-gd --without-pear --enable-fpm
[root@centos2 /lnmp/php-7.3.]# make
[root@centos2 /lnmp/php-7.3.]# make install
3.2 生成php配置文件
[root@centos2 ~]# cp -a /lnmp/php-7.3./php.ini-production /usr/local/php/etc/php.ini
#复制源码包内的配置文件到安装目录下,并改名即可
3.3 创建软连接,使用php相关命令更方便
[root@centos2 ~]# ln -s /usr/local/php/bin/* /usr/local/bin/
[root@centos2 ~]# ln -s /usr/local/php/sbin/* /usr/local/sbin/
4. 配置nginx连接php
4.1 nginx连接php需启动php-fpm服务
[root@centos2 ~]# cd /usr/local/php/etc/
[root@centos2 /usr/local/php/etc]# cp php-fpm.conf.default php-fpm.conf
[root@centos2 /usr/local/php/etc]# vim php-fpm.conf
#修改指定参数
pid = run/php-fpm.pid
[root@centos2 /usr/local/php/etc]# cd /usr/local/php/etc/php-fpm.d/
[root@centos2 /usr/local/php/etc/php-fpm.d]# cp -a www.conf.default www.conf
[root@centos2 /usr/local/php/etc/php-fpm.d]# vim www.conf
#修改用户和组的指定用户
user = nginx
group = nginx 修改nginx启动脚本;将php-fpm的注释取消即可
4.2 修改nginx的配置文件,使其能识别.php后缀的文件
[root@centos2 /usr/local/php/etc/php-fpm.d]# cd ../../../nginx/conf/
[root@centos2 /usr/local/nginx/conf]# vim nginx.conf
#取消下列行的注释,并修改include 选项后的后缀为fastcgi.conf,并注意每一行结尾的分号和大括号 location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params; #修改为fastcgi.conf
}
测试:
重启nginx,创建php测试文件,访问并查看是否解析
4.3 修改nginx配置文件,使其默认自动加载php文件
location / {
root html; #nginx默认的网页路径:prefix/html
index index.html index.php index.htm; #设置默认加载的页面,以及优先级
}
centos7搭建lnmp的更多相关文章
- CentOS7——搭建LNMP环境(WordPress案例)
CentOS7--搭建LNMP环境(WordPress案例) LNMP组成介绍 LNMP(Linux-Nginx-MySQL-PHP)网站架构是目前国际流行的Web框架,该框架包括:Linux操作系统 ...
- Centos7 搭建lnmp环境 (centos7+nginx+MySQL5.7.9+PHP7)
阿里云一台服务器出现问题! 我估计是一键安装包环境的原因,所以打算重新搭建下环境! 首先,当然是先做好快照!安全第一! 对系统盘做更换系统操作,装上纯净版的centos. 装好后,进入系统 一.挂载数 ...
- linux中Centos7搭建lnmp环境
1.安装yum yum update 2.安装nginx源: yum localinstall http://nginx.org/packages/centos/7/noarch/RPMS/nginx ...
- CentOS7 搭建LNMP
一. 安装依赖文件 1. sudo yum install gcc gcc-c++ zlib zlib-devel libxml2 libxml2-devel openssl open ...
- CentOS7搭建LNMP环境
以前写的过时了,重新发一篇新的. 安装PHP 下载官网:https://www.php.net/downloads.php 为了方便,我存了现成的 百度网盘:https://pan.baidu.com ...
- Vmware搭建LNMP环境(Centos7+Nginx+Mysql+PHP7.1.8)
参考:1.Linux学习之CentOS(一)----在VMware虚拟机中安装CentOS 7(图文教程) 2.Centos7搭建LNMP环境 3.MySQL5.7修改默认root密码 4.CentO ...
- 在Linux CentOS7系统中搭建LNMP
LNMP就是Linux+Nginx+MySQL+PHP,既然是在Linux CentOS7那么Linux就是已经安装好了.所以接下百度一下接下来的教程,整理测试如下: 教程是centos6.2的有点老 ...
- centos7 yum搭建lnmp环境及配置wordpress超详细教程
yum安装lnmp环境是最方便,最快捷的一种方法.源码编译安装需要花费大量的人类时间,当然源码编译可以个性化配置一些其它功能.目前来说,yum安装基本满足我们搭建web服务器的需求. 本文是我根据近期 ...
- 小白简单快速搭建lnmp环境(centos7)
本来想着自己搭建lnmp,由于php包下载不下来因此这次本人使用的lnmp一键包搭建的环境(很遗憾还没有php7.3.5)很详细并且方便快捷网址https://lnmp.org/install.htm ...
随机推荐
- 腾讯云VPS注意事项
这几天腾讯云VPS搞活动 买了2台服务器, 1台是1核2G1M带宽,一年99 1台是2核4G6M带宽,三年1499 前几年一直在用阿里云,感觉价格太贵,价格上腾讯云,搞活动真的优惠比较大, 最近也准备 ...
- 每日一问:不一样的角度吐槽下 DataBinding
我们项目采用的是 kotlin && DataBinding 处理的,可能你会疑问,既然用的是 kotlin,为啥没有用 kotlinx?新的页面当然是用的 kotlinx 啦,但我们 ...
- [Gamma]阶段测试报告
后端测试 我们进行了覆盖性测试,覆盖率达到77%. Beta阶段发现的Bug 项目显示的图片错误 无法使用搜索框 发布实验室项目的按钮点击无法跳转 连续点击发帖按钮可能发出多个相同的帖子 不需要点击我 ...
- QuantLib 金融计算——案例之普通欧式期权分析
目录 QuantLib 金融计算--案例之普通欧式期权分析 概述 普通欧式期权公式法定价 1. 配置期权合约条款 2. 构建期权对象 3. 配置定价引擎 4. 计算 题外话:天数计算规则 Quote ...
- 红米note7几个问题处理
1.听筒声音很小,外放正常,试了很多种方法,最终可行的是吧听筒网灰尘弄一下. 2.SAICLink车机互联:需要打开USB调试.USB安装.USB调试(安全设置)(不开启这个的话会连接后就断开).默认 ...
- Disable foreign key checks during import
The command SET FOREIGN_KEY_CHECKS=0; sets the value of a variable in a session scope. So it affects ...
- Java并发编程基础-Unsafe
前言:Unsafe是Java中一个底层类,包含了很多基础的操作,比如数组操作.对象操作.内存操作.CAS操作.线程(park)操作.栅栏(Fence)操作,JUC包.一些三方框架都使用Unsafe类来 ...
- Qt 文件选项对话框弹出两次
1 问题 在Qt 5.12.0 版本中,用 QFileDialog 类来做文件选择时候,发现当弹出对话框后,选择完文件后,又弹出文件选择对话框. 2 原因查找 2.1 代码 QFileDialog ...
- VS2019 Nuget找不到包的问题处理
VS不记得改了什么设置之后,发现找不到EF 解决办法 1.点击右侧的设置按钮 2.弹出窗中左侧树形结构选择“程序包源”,再点击右上方的添加按钮 输入一下信息:https://www.nuget.org ...
- FindWindow和FindWindowEx函数使用
FindWindow( lpClassName, {窗口的类名} lpWindowName: PChar {窗口的标题} ): HWND; {返回窗口的 ...