摘要:
#!/bin/bash # # Startup script for Nginx - this script starts and stops the nginx daemon # # chkconfig: - 85 15 # description: Nginx is an HTTP(S) ser 阅读全文
摘要:
#!/bin/sh # # Simple Redis init.d script conceived to work on Linux systems # as it does use of the /proc filesystem. ### BEGIN INIT INFO # Provides: 阅读全文
摘要:
问题一:安装环境依赖问题 执行./configure 1)缺少PCRE库(正则匹配模块) 解决方案:安装此依赖 yum -y install pcre pcre-devel 2)缺少zlib库(gzip压缩模块) 解决方案:安装此依赖 yum -y install zlib zlib-devel 问 阅读全文