centos7搭建LNMP环境

备注:采用最新的centos7.6源码安装编译搭建高性能Lnmp环境,采用openresty高性能处理并发问题。

第一步:官网下载centos7系统(本次下载精简版 900多m, everything版本 大概5G)

第二步:安装系统

由于安装的是精简版,所以需要自己yum 安装自己需要的各种命令 

比如 vim not found  => yum install -y vim*   netstat 不能使用  => yum install net-tools

查看防火墙  firewall-cmd --state (systemctl status firewalld )

关闭防火墙  systemctl stop firewalld.service

禁止开机自启动 systemctl disable firewalld.service

关闭selinux 
进入到/etc/selinux/config文件   vi /etc/selinux/config   将SELINUX=enforcing改为SELINUX=disabled

第三步:安装openresty

1.下载openresty
wget https://openresty.org/download/openresty-1.13.6.1.tar.gz

2.解压openresty
tar zxvf openresty-1.13.6.1.tar.gz

3.安装openresty依赖
yum -y install readline-devel pcre-devel openssl-devel gcc perl curl

4.配置openresty
可以通过 –prefix=/usr/指定特定路径,不指定默认路径是/usr/local/openresty/

./configure --prefix=/usr/local/openresty --with-luajit --without-http_redis2_module --with-http_iconv_module

5.配置完毕编译安装清理
gmake && gmake install && gmake clean

6.启动openresty
cd /usr/local/openresty/nginx/sbin
./nginx
Nginx 常用命令
./nginx -s quit 停止
./nginx 启动
./nginx -s reload 重新加载配置文件

7.配置环境变量

在/etc/profile 文件结尾中加入配置  ,命令:vim /etc/profile 
#nginx configure
export NGINX_HOME=/usr/local/nginx
export PATH=$PATH:$NGINX_HOME/sbin
编译完保存退出并执行 source /etc/profile

第四步:安装mysql

1. 安装依赖   yum -y install gcc gcc-c++ ncurses ncurses-devel cmake bison

MySQL5.7在安装时需要boost库,在这里也需要安装,只需解压即可。但是要注意boost软件的版本,不要选错版本。与MySQL5.7相对应的版本是boost_1_59_0。我在开头提供了软件的下载链接。

  1. wget https://sourceforge.net/projects/boost/files/boost/1.59.0/boost_1_59_0.tar.gz

  2. wget http://cdn.mysql.com/Downloads/MySQL-5.7/mysql-5.7.13.tar.gz
tar zxf boost_1_59_0.tar.gz -C /usr/local/
cd /usr/local/
mv boost_1_59_0 boost

 新建MySQL用户和用户组

groupadd -r mysql && useradd -r -g mysql -s /sbin/nologin -M mysql

 

1、进入压缩包存放目录
[root@localhost ~]# cd /usr/local

2、解压压缩包
[root@localhost local]# tar -xzvf mysql-5.7.24-linux-glibc2.12-x86_64.tar.gz

3、修改文件夹名字
将解压后的文件夹修改名字,文件夹名字改为mysql

[root@localhost local]mv mysql-5.7.24-linux-glibc2.12-x86_64 mysql

4、检查并创建用户和用户组
  [root@localhost local]# cat /etc/group | grep mysql
  [root@localhost local]# cat /etc/passwd |grep mysql
  [root@localhost local]# groupadd mysql
  [root@localhost local]# useradd -r -g mysql mysql

5、创建data文件夹
某个版本之后就没有data文件夹了

[root@localhost local]mkdir /usr/local/mysql/data

6、授权目录和用户
(****重要****)忘记授权会出问题,em...,各种各样的问题

[root@localhost /]# cd /usr/local/ 
[root@localhost local]# chown -R mysql:mysql mysql/
[root@localhost local]# chmod -R 755 mysql/

7、安装并初始化*****重要*****
执行下面之前去/etc/目录下查看是否有my.cnf配置文件,如果有,删除或者修改名字备份起来!不然会出现各种PID或者SOCK有关的问题

某个版本之后这个步骤是下面这样,以前是mysql_install_db,datadir就是安装路径,basedir就是根目录

[root@localhost local]# /usr/local/mysql/bin/mysqld --initialize --user=mysql --datadir=/usr/local/mysql/data --basedir=/usr/local/mysql

执行完上面之后,最后一行会有默认生成的密码,记下来
第五步:安装PHP

https://www.cnblogs.com/lostk/p/6225055.html(转载)

转载于:https://my.oschina.net/xinkui/blog/831576

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值