Centos7下编译安装lnmp环境(nginx1.18.0+mysql5.7.44+php7.4.33)

  • 2019-10-18 13:38:15
  • 运维
  • 37
  • shevechco

centos7编译安装mysql5.7.44+nginx1.18.0+php7.4.33,和之前的教程大体一样,只是有一些微改变,编译安装顺序最好按此文的顺序mysql->nginx->php这样
可以看看我之前centos6编译的教程:https://sulao.cn/post/109

首先约定下部署规范,所有软件均上传到/usr/loca/src目录,编译安装到/usr/local/下的软件名目录

下面我们来看看centos7上编译的过程

首先关闭selinux

01.
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
02.
setenforce 0

关闭防火墙并停用开机启动

01.
systemctl stop firewalld.service
02.
systemctl disable firewalld.service

更换阿里云yum源

01.
yum install wget -y
02.
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak
03.
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

更新yum缓存

01.
yum makecache

安装依赖包

01.
yum install -y make apr* autoconf automake curl-devel gcc gcc-c++ zlib-devel openssl openssl-devel pcre-devel libjpeg-devel libpng-devel zlib-devel libXpm* freetype php-common ncurses* libtool* libxml2 libxml2-devel patch freetype-devel cmake pcre sqlite-devel

安装mysql5.7

01.
groupadd mysql  #添加mysql组    
02.
useradd -g mysql mysql -s /sbin/nologin  #创建用户mysql并加入到mysql组,不允许mysql用户直接登录系统    
03.
mkdir -p /data/mysql  #创建MySQL数据库存放目录    
04.
chown -R mysql:mysql /data/mysql   #设置MySQL数据库目录权限    
05.
mkdir -p /usr/local/mysql #创建MySQL安装目录    
06.
cd /usr/local/src    
07.
tar zxvf mysql-5.7.44.tar.gz  #解压    
08.
cd mysql-mysql-5.7.44    
09.
cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/mysql  -DMYSQL_DATADIR=/data/mysql  -DSYSCONFDIR=/etc -DWITH_BOOST=boost -DDOWNLOAD_BOOST=1  #DDOWNLOAD_BOOST参数会联网下载boost,如何下载带boost header的版本的mysql则不用添加此参数   
10.
make #编译    
11.
make install  #安装

添加my.cnf配置文件,如果/etc下没有就新增,有就清空内容添加以下内容 

01.
#vi /etc/my.cnf
02.
[client]
03.
port = 3306
04.
socket = /data/mysql/mysql.sock
05.
default-character-set = utf8mb4
06.
[mysql]
07.
prompt="MySQL [\d]> "
08.
no-auto-rehash
09.
[mysqld]
10.
port = 3306
11.
socket = /data/mysql/mysql.sock
12.
basedir = /usr/local/mysql
13.
datadir = /data/mysql
14.
pid-file = /data/mysql/mysql.pid
15.
user = mysql
16.
bind-address = 0.0.0.0
17.
server-id = 1
18.
init-connect = 'SET NAMES utf8mb4'
19.
character-set-server = utf8mb4
20.
skip-name-resolve
21.
#skip-networking
22.
back_log = 300
23.
max_connections = 1000
24.
max_connect_errors = 6000
25.
open_files_limit = 65535
26.
table_open_cache = 128
27.
max_allowed_packet = 500M
28.
binlog_cache_size = 1M
29.
max_heap_table_size = 8M
30.
tmp_table_size = 16M
31.
read_buffer_size = 2M
32.
read_rnd_buffer_size = 8M
33.
sort_buffer_size = 8M
34.
join_buffer_size = 8M
35.
key_buffer_size = 4M
36.
thread_cache_size = 8
37.
query_cache_type = 1
38.
query_cache_size = 8M
39.
query_cache_limit = 2M
40.
ft_min_word_len = 4
41.
log_bin = mysql-bin
42.
binlog_format = mixed
43.
expire_logs_days = 7
44.
log_error = /data/mysql/mysql-error.log
45.
slow_query_log = 1
46.
long_query_time = 1
47.
slow_query_log_file = /data/mysql/mysql-slow.log
48.
performance_schema = 0
49.
#lower_case_table_names = 1
50.
skip-external-locking
51.
default_storage_engine = InnoDB
52.
innodb_file_per_table = 1
53.
innodb_open_files = 500
54.
innodb_buffer_pool_size = 64M
55.
innodb_write_io_threads = 4
56.
innodb_read_io_threads = 4
57.
innodb_thread_concurrency = 0
58.
innodb_purge_threads = 1
59.
innodb_flush_log_at_trx_commit = 2
60.
innodb_log_buffer_size = 2M
61.
innodb_log_file_size = 32M
62.
innodb_log_files_in_group = 3
63.
innodb_max_dirty_pages_pct = 90
64.
innodb_lock_wait_timeout = 120
65.
bulk_insert_buffer_size = 8M
66.
interactive_timeout = 28800
67.
wait_timeout = 28800
68.
[mysqldump]
69.
quick
70.
max_allowed_packet = 500M
71.
[myisamchk]
72.
key_buffer_size = 8M
73.
sort_buffer_size = 8M
74.
read_buffer = 4M
75.
write_buffer = 4M

:wq!  #保存退出
初始化mysql5.7数据库的方式跟mysql5.6和5.5不一样了,这里要注意

01.
/usr/local/mysql/bin/mysqld --initialize-insecure --user=mysql --basedir=/usr/local/mysql --datadir=/data/mysql   
02.
cp ./support-files/mysql.server  /usr/local/mysql/bin/mysql.server  #把Mysql启停脚本放置到bin目录下,方便后续编写系统服务   
03.
#vi /usr/local/mysql/bin/mysql.server  #编辑    
04.
basedir = /usr/local/mysql   #MySQL程序安装路径    
05.
datadir = /data/mysql  #MySQl数据库存放目录

:wq! 保存退出

01.
chmod +x /usr/local/mysql/bin/mysql.server

mysql开机启动配置

01.
vi /usr/lib/systemd/system/mysqld.service
02.
[Unit]
03.
Description=mysql project
04.
After=mysqld.service
05.
  
06.
[Service]
07.
Type=forking
08.
User=mysql
09.
Group=mysql
10.
PIDFile=/data/mysql/mysql.pid
11.
ExecStart=/usr/local/mysql/bin/mysql.server start
12.
ExecReload=/usr/local/mysql/bin/mysql.server restart
13.
ExecStop=/usr/local/mysql/bin/mysql.server stop
14.
PrivateTmp=true
15.
  
16.
[Install]
17.
WantedBy=multi-user.target

给启动服务脚本754权限

01.
chmod 754 /usr/lib/systemd/system/mysqld.service
02.
systemctl start mysqld.service #启动mysql
03.
#如果启动报错重新加载下daemon
04.
systemctl daemon-reload
05.
systemctl enable mysqld.service #添加到开机启动

把mysql服务加入系统环境变量:在最后添加下面这一行

01.
vi /etc/profile    
02.
export PATH=$PATH:/usr/local/mysql/bin

:wq! #保存退出

使其生效

01.
source /etc/profile

修改mysql密码,默认密码为空

01.
mysql -u root -p #直接回车登陆
02.
SET PASSWORD=PASSWORD("admin")

nginx安装和之前一样,主要也是开机启动服务需要自己编写,我们可以在这里下载nginx:https://nginx.org/en/download.html

01.
groupadd  www  #添加www组    
02.
useradd -g  www www -s /sbin/nologin  #创建nginx运行账户www并加入到www组,不允许www用户直接登录系统 
03.
tar -zxvf nginx-1.18.0.tar.gz
04.
cd nginx-1.18.0
05.
./configure --prefix=/usr/local/nginx --without-http_memcached_module --user=www --group=www --with-http_stub_status_module --without-http-cache --with-http_ssl_module --with-http_v2_module --with-http_realip_module --with-pcre
06.
make #编译    
07.
make install  #安装

nginx开机启动

01.
vi /usr/lib/systemd/system/nginxd.service
02.
[Unit]
03.
Description=nginx project
04.
After=nginxd.service
05.
  
06.
[Service]
07.
Type=forking
08.
PIDFile=/usr/local/nginx/logs/nginx.pid
09.
ExecStart=/usr/local/nginx/sbin/nginx
10.
ExecReload=/usr/local/nginx/sbin/nginx -s reload
11.
ExecStop=/usr/local/nginx/sbin/nginx -s stop
12.
PrivateTmp=true
13.
  
14.
[Install]
15.
WantedBy=multi-user.target

给开机服务脚本754权限

01.
chmod 754 /usr/lib/systemd/system/nginxd.service
02.
systemctl start nginxd.service
03.
#如果启动报错重新加载下daemon
04.
systemctl daemon-reload
05.
systemctl enable nginxd.service

安装libmcrypt,

01.
cd /usr/local/src
02.
wget http://nchc.dl.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz  
03.
tar zxvf libmcrypt-2.5.8.tar.gz
04.
cd  libmcrypt-2.5.8
05.
./configure
06.
make
07.
make install

编译安装php7的时候会报错,我踩过坑了

01.
configure: error: Please reinstall the libzip distribution

需要安装高版本的lizip,如果安装1.5的版本会提示cmake版本低,我这里方便还是使用的1.3.2的版本

01.
yum remove libzip
02.
wget https://libzip.org/download/libzip-1.3.2.tar.gz
03.
tar -zxvf libzip-1.3.2.tar.gz
04.
cd libzip-1.3.2
05.
./configure
06.
make && make install
07.
#设置pkg_config_path环境变量
08.
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig

如果再次编译php7报以下错误

01.
/usr/local/include/zip.h:59:21: fatal error: zipconf.h: No such file or directory

可以尝试手工复制一个过去

01.
cp /usr/local/lib/libzip/include/zipconf.h /usr/local/include/zipconf.h

再次编译php7

01.
mkdir -p /usr/local/php7
02.
ln -s /usr/lib64/liblber* /usr/lib/ #ldap模块需要的库
03.
tar -zxvf php-7.4.33.tar.gz
04.
cd php-7.4.33
05.
./configure --prefix=/usr/local/php7 --with-config-file-path=/usr/local/php7/etc --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-pdo-mysql=/usr/local/mysql --enable-mysqlnd --enable-gd --with-iconv --with-ldap=shared --with-zlib --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --enable-mbregex  --enable-fpm --enable-mbstring --disable-mbregex --enable-ftp --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --with-zip --enable-soap --without-pear --with-gettext --enable-session --with-curl --with-jpeg --with-freetype --enable-opcache
06.
make   #编译    
07.
make install    #安装

如果内存小于1G会报错:make: *** [ext/fileinfo/libmagic/apprentice.lo] Error 1
在./configure添加:--disable-fileinfo   即可

01.
cp  php.ini-production   /usr/local/php7/etc/php.ini  #复制php配置文件到安装目录    
02.
rm -rf /etc/php.ini   #删除系统自带配置文件    
03.
ln -s /usr/local/php7/etc/php.ini  /etc/php.ini    #添加软链接    
04.
cp  /usr/local/php7/etc/php-fpm.conf.default   /usr/local/php7/etc/php-fpm.conf      #拷贝模板文件为php-fpm配置文件
05.
cd /usr/local/php7/etc/php-fpm.d/
06.
cp www.conf.default www.conf
07.
vi  www.conf
08.
user = www    #设置php-fpm运行账号为www    
09.
group = www   #设置php-fpm运行组为www   
10.
wq! #保存退出
11.
vi  /usr/local/php7/etc/php-fpm.conf  #编辑    
12.
pid = run/php-fpm.pid    #取消前面的分号 
13.
wq! #保存退出
14.
cp sapi/fpm/init.d.php-fpm /usr/local/php7/bin/php-fpm  #编写php开机启动需要的文件
15.
chmod +x /usr/local/php7/bin/php-fpm  #添加执行权限

php开机启动配置

01.
vi /usr/lib/systemd/system/phpd.service
02.
[Unit]
03.
Description=php project
04.
After=phpd.service
05.
  
06.
[Service]
07.
Type=forking
08.
PIDFile=/usr/local/php7/var/run/php-fpm.pid
09.
ExecStart=/usr/local/php7/bin/php-fpm start
10.
ExecReload=/usr/local/php7/bin/php-fpm restart
11.
ExecStop=/usr/local/php7/bin/php-fpm stop
12.
PrivateTmp=true
13.
  
14.
[Install]
15.
WantedBy=multi-user.target

给开机启动服务脚本添加754权限

01.
chmod 754 /usr/lib/systemd/system/phpd.service
02.
systemctl start phpd.service
03.
#如果启动报错重新加载下daemon
04.
systemctl daemon-reload
05.
systemctl enable phpd.service

我们也把php执行文件加到环境变量吧

01.
vi /etc/profile    
02.
export PATH=$PATH:/usr/local/php7/bin

:wq! #保存退出

使环境变量生效

01.
source /etc/profile

这样所有需要的软件都已经编译完,我们可以重新启动下服务器看看nginx,php,mysql服务是不是自动启动,他们分别对应的监听端口是

01.
php -> 9000
02.
mysql -> 3306
03.
nginx -> 80

{DAC164F7-6F6E-4C9F-8AA9-754299947E8B}_20191018134649.jpg

接着我们配置网站,修改/usr/local/nginx/conf/nginx.conf配置文件,内容可以全部参照以下配置进行修改

01.
cat /usr/local/nginx/conf/nginx.conf
02.
03.
user  www www;
04.
worker_processes  auto;
05.
error_log /var/log/nginx/error.log;
06.
pid        logs/nginx.pid;
07.
08.
events {
09.
    worker_connections  1024;
10.
    multi_accept on; 
11.
    use epoll; 
12.
}
13.
14.
http {
15.
    include       mime.types;
16.
    default_type  application/octet-stream;
17.
18.
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
19.
                      '$status $body_bytes_sent "$http_referer" '
20.
                      '"$http_user_agent" "$http_x_forwarded_for"';
21.
22.
    access_log  logs/access.log  main;
23.
24.
    client_header_timeout 30; 
25.
    client_body_timeout 30;
26.
    client_max_body_size 128m;
27.
    reset_timedout_connection on;
28.
29.
    sendfile        on;
30.
    #tcp_nopush     on;
31.
32.
    keepalive_timeout  30;
33.
    
34.
    send_timeout 30;
35.
    limit_conn_zone $binary_remote_addr zone=addr:5m; 
36.
    limit_conn addr 100;
37.
38.
    fastcgi_connect_timeout 300;
39.
    fastcgi_send_timeout 300;
40.
    fastcgi_read_timeout 300;
41.
42.
    fastcgi_buffer_size 128k;
43.
    fastcgi_buffers 4 256k;
44.
    fastcgi_busy_buffers_size 256k;
45.
46.
    gzip on;
47.
    gzip_min_length 1k;
48.
    gzip_buffers 16 64k;
49.
    gzip_http_version 1.1;
50.
    gzip_comp_level 9;
51.
    gzip_types text/plain application/x-javascript text/css application/xml application/x-httpd-php;
52.
    gzip_vary on;
53.
54.
    proxy_buffer_size 128k;
55.
    proxy_buffers 32 32k;
56.
    proxy_busy_buffers_size 128k;
57.
58.
    open_file_cache max=100000 inactive=30s; 
59.
    open_file_cache_valid 60s; 
60.
    open_file_cache_min_uses 2; 
61.
    open_file_cache_errors on;
62.
63.
include vhost/*.conf;
64.
65.
}

接着我们在/usr/local/nginx/conf目录下创建vhost虚拟主机目录用来进行虚拟主机的配置,这样的好处就是每个虚拟主机(web网站)单独一个配置来管理自己的web相关配置和优化。

01.
mkdir /usr/local/nginx/conf/vhost
02.
vi /usr/local/nginx/conf/vhost/sulao.cn.conf #以下是我博客的配置为例
03.
server {
04.
    listen 80;
05.
    server_name www.sulao.cn sulao.cn;
06.
    root  /data/www/sulao.cn;
07.
    index index.html index.php;
08.
    # include /data/www/sulao.cn/.htaccess; #载入伪静态的配置文件
09.
    location ~ .*\.(jpg|jpeg|png|gif|js|css)$ {
10.
        expires 1d;
11.
        valid_referers none blocked sulao.cn *.sulao.cn *.google.com *.baidu.com *.so.com *.haosou.com *.bing.com *.sm.cn;
12.
        if ($invalid_referer) {
13.
            return 404;
14.
        }
15.
    }
16.
    location ~ \.php(/|$) {
17.
        fastcgi_pass   127.0.0.1:9000;
18.
        fastcgi_index  index.php;
19.
        fastcgi_split_path_info ^(.+\.php)(.*)$;
20.
        fastcgi_param PATH_INFO $fastcgi_path_info;
21.
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
22.
        include        fastcgi_params;
23.
    }
24.
}

如果是需要https访问,需要提前准备CA证书,那么虚拟主机的配置可以参考以下

01.
server {
02.
    listen 443;
03.
    server_name sulao.cn;
04.
    ssl on;
05.
    ssl_certificate   /data/www/sulao.cn/sslkey/sulao.cn.pem;
06.
    ssl_certificate_key  /data/www/sulao.cn/sslkey/sulao.cn.key;
07.
    ssl_session_timeout 5m;
08.
    ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4:!DH:!DHE;
09.
    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
10.
    ssl_prefer_server_ciphers on;
11.
    root  /data/www/sulao.cn;
12.
    index index.html index.php;
13.
    # include /data/www/sulao.cn/.htaccess;  #载入伪静态的配置文件
14.
    location ~ .*\.(jpg|jpeg|png|gif|js|css)$ {
15.
        expires 1d;
16.
        valid_referers none blocked sulao.cn *.sulao.cn *.google.com *.baidu.com *.so.com *.haosou.com *.bing.com *.sm.cn;
17.
        if ($invalid_referer) {
18.
            return 404;
19.
        }
20.
    }
21.
    location ~ \.php(/|$) {
22.
        fastcgi_pass   127.0.0.1:9000;
23.
        fastcgi_index  index.php;
24.
        fastcgi_split_path_info ^(.+\.php)(.*)$;
25.
         fastcgi_param PATH_INFO $fastcgi_path_info;
26.
        fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
27.
        include        fastcgi_params;
28.
    }
29.
}


内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.sulao.cn/post/725

相关推荐