0℃
2025年04月24日
⁄ Tengine
⁄ 被围观 167次+
官方网站:
https://tengine.taobao.org/
下载地址:
1、tengine
https://tengine.taobao.org/download_cn.html
https://tengine.taobao.org/download/tengine-3.1.0.tar.gz
2、pcre
https://ftp.pcre.org/pub/pcre/pcre-8.45.tar.gz
3、zlib
https://zlib.net/fossils/zlib-1.3.tar.gz
4、openssl
https://www.openssl.org/source/openssl-1.1.1k.tar.gz
创建相应目录:
mkdir -p /data/server/tengine/packages
mkdir -p /data/server/tengine/install
上传安装包到/data/server/tengine/packages目录下面
操作...
linux, nginx, Tengine阅读全文
0℃
2025年04月23日
⁄ PHP
⁄ 被围观 135次+
环境说明:
php安装目录:/usr/local/php73
1、下载安装ImageMagick #imagick扩展的依赖库
cd /usr/local/src
wget https://github.com/ImageMagick/ImageMagick/archive/7.0.8-61.tar.gz
tar -zxvf 7.0.8-61.tar.gz
cd ImageMagick-7.0.8-61
./configure --prefix=/usr/local/imagemagick
make
make install
2、下载安装imagick扩展
cd /usr/local/src
wget http://pecl.php.net/get/imagick-3.4.4.tgz
tar -zxvf imagick-3.4.4.tgz
cd imagick-3.4.4
/usr/local/php73/bin/phpize
./configure --with-php-con...
linux, php阅读全文
0℃
2025年04月11日
⁄ NFS
⁄ 被围观 258次+
操作系统:CentOS-7-8、openEuler、Anolis OS等
准备工作
1、关闭selinux
sestatus #查看状态,显示disabled表示已经禁用
sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config #禁用selinux
setenforce 0 #临时禁用
/usr/sbin/sestatus -v #查看selinux状态,disabled表示关闭
2、防火墙配置
2.1、关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
systemctl mask firewalld
systemctl stop firewalld
yum remove firewall...
linux, nfs阅读全文