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/config02.setenforce 0
关闭防火墙并停用开机启动
01.systemctl stop firewalld.service02.systemctl disable firewalld.service
更换阿里云yum源
01.yum install wget -y02.mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak03.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.cnf02.[client]03.port = 330604.socket = /data/mysql/mysql.sock05.default-character-set = utf8mb406.[mysql]07.prompt="MySQL [\d]> "08.no-auto-rehash09.[mysqld]10.port = 330611.socket = /data/mysql/mysql.sock12.basedir = /usr/local/mysql13.datadir = /data/mysql14.pid-file = /data/mysql/mysql.pid15.user = mysql16.bind-address = 0.0.0.017.server-id = 118.init-connect = 'SET NAMES utf8mb4'19.character-set-server = utf8mb420.skip-name-resolve21.#skip-networking22.back_log = 30023.max_connections = 100024.max_connect_errors = 600025.open_files_limit = 6553526.table_open_cache = 12827.max_allowed_packet = 500M28.binlog_cache_size = 1M29.max_heap_table_size = 8M30.tmp_table_size = 16M31.read_buffer_size = 2M32.read_rnd_buffer_size = 8M33.sort_buffer_size = 8M34.join_buffer_size = 8M35.key_buffer_size = 4M36.thread_cache_size = 837.query_cache_type = 138.query_cache_size = 8M39.query_cache_limit = 2M40.ft_min_word_len = 441.log_bin = mysql-bin42.binlog_format = mixed43.expire_logs_days = 744.log_error = /data/mysql/mysql-error.log45.slow_query_log = 146.long_query_time = 147.slow_query_log_file = /data/mysql/mysql-slow.log48.performance_schema = 049.#lower_case_table_names = 150.skip-external-locking51.default_storage_engine = InnoDB52.innodb_file_per_table = 153.innodb_open_files = 50054.innodb_buffer_pool_size = 64M55.innodb_write_io_threads = 456.innodb_read_io_threads = 457.innodb_thread_concurrency = 058.innodb_purge_threads = 159.innodb_flush_log_at_trx_commit = 260.innodb_log_buffer_size = 2M61.innodb_log_file_size = 32M62.innodb_log_files_in_group = 363.innodb_max_dirty_pages_pct = 9064.innodb_lock_wait_timeout = 12065.bulk_insert_buffer_size = 8M66.interactive_timeout = 2880067.wait_timeout = 2880068.[mysqldump]69.quick70.max_allowed_packet = 500M71.[myisamchk]72.key_buffer_size = 8M73.sort_buffer_size = 8M74.read_buffer = 4M75.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.service02.[Unit]03.Description=mysql project04.After=mysqld.service05. 06.[Service]07.Type=forking08.User=mysql09.Group=mysql10.PIDFile=/data/mysql/mysql.pid11.ExecStart=/usr/local/mysql/bin/mysql.server start12.ExecReload=/usr/local/mysql/bin/mysql.server restart13.ExecStop=/usr/local/mysql/bin/mysql.server stop14.PrivateTmp=true15. 16.[Install]17.WantedBy=multi-user.target
给启动服务脚本754权限
01.chmod 754 /usr/lib/systemd/system/mysqld.service02.systemctl start mysqld.service #启动mysql03.#如果启动报错重新加载下daemon04.systemctl daemon-reload05.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.gz04.cd nginx-1.18.005../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-pcre06.make #编译 07.make install #安装
nginx开机启动
01.vi /usr/lib/systemd/system/nginxd.service02.[Unit]03.Description=nginx project04.After=nginxd.service05. 06.[Service]07.Type=forking08.PIDFile=/usr/local/nginx/logs/nginx.pid09.ExecStart=/usr/local/nginx/sbin/nginx10.ExecReload=/usr/local/nginx/sbin/nginx -s reload11.ExecStop=/usr/local/nginx/sbin/nginx -s stop12.PrivateTmp=true13. 14.[Install]15.WantedBy=multi-user.target
给开机服务脚本754权限
01.chmod 754 /usr/lib/systemd/system/nginxd.service02.systemctl start nginxd.service03.#如果启动报错重新加载下daemon04.systemctl daemon-reload05.systemctl enable nginxd.service
安装libmcrypt,
01.cd /usr/local/src02.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.gz04.cd libmcrypt-2.5.805../configure06.make07.make install
编译安装php7的时候会报错,我踩过坑了
01.configure: error: Please reinstall the libzip distribution
需要安装高版本的lizip,如果安装1.5的版本会提示cmake版本低,我这里方便还是使用的1.3.2的版本
01.yum remove libzip02.wget https://libzip.org/download/libzip-1.3.2.tar.gz03.tar -zxvf libzip-1.3.2.tar.gz04.cd libzip-1.3.205../configure06.make && make install07.#设置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/php702.ln -s /usr/lib64/liblber* /usr/lib/ #ldap模块需要的库03.tar -zxvf php-7.4.33.tar.gz04.cd php-7.4.3305../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-opcache06.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.conf07.vi www.conf08.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.service02.[Unit]03.Description=php project04.After=phpd.service05. 06.[Service]07.Type=forking08.PIDFile=/usr/local/php7/var/run/php-fpm.pid09.ExecStart=/usr/local/php7/bin/php-fpm start10.ExecReload=/usr/local/php7/bin/php-fpm restart11.ExecStop=/usr/local/php7/bin/php-fpm stop12.PrivateTmp=true13. 14.[Install]15.WantedBy=multi-user.target
给开机启动服务脚本添加754权限
01.chmod 754 /usr/lib/systemd/system/phpd.service02.systemctl start phpd.service03.#如果启动报错重新加载下daemon04.systemctl daemon-reload05.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 -> 900002.mysql -> 330603.nginx -> 80
接着我们配置网站,修改/usr/local/nginx/conf/nginx.conf配置文件,内容可以全部参照以下配置进行修改
01.cat /usr/local/nginx/conf/nginx.conf02. 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/vhost02.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
相关推荐
- flask使用nginx代理以后图片上传和加载问题解决方法
- mysql8登录报错Host '127.0.0.1' is not allowed to connect...
- python使用peewee(ORM)操作mysql数据库
- nginx反向代理http/https、rpc/grpc、ws/wss
- centos7安装CUDA Tookit+CUDA Samples+NCCL+OpenMPI
- centos7添加交换分区swap
- centos7升级systemd并切换cgroup v1到cgroup v2
- centos7下程序运行提示报错version `GLIBCXX_3.4.20` not found
- centos7安装GUI图形界面
- centos7使用haproxy部署k8s高可用集群