PHP 编译安装配置

·
2024年9月11日
·
289 次阅读
·
0 条评论
·
字数:753,阅读约3分钟
·
未分类

 

Configure

./configure --prefix=/php/ --enable-fpm --with-fpm-user=www-data --with-fpm-group=www-data --with-pear --with-zlib --with-bz2 --enable-gd --with-jpeg --with-webp --with-freetype --with-zip --with-pdo-mysql --with-mysqli --enable-intl --with-curl --enable-calendar --with-openssl --with-xsl --enable-ftp --enable-sockets --enable-mbstring --enable-bcmath --with-gettext --enable-exif --enable-soap --with-mhash

 

自启动服务

服务文件位置

/lib/systemd/system/php.service

 

内容

[Unit]
Description=The PHP Service
After=network.target

[Service]
Type=forking
ExecStart=/php/sbin/php-fpm
ExecReload=/bin/kill -USR2 $MAINPID
ExecStop=/bin/kill -SIGINT $MAINPID

[Install]
WantedBy=multi-user.target

 

配置文件位置

/php/lib/php.ini

 

/php/etc/php-fpm.conf

 

/php/etc/php-fpm.d/www.conf

 

THE END
感谢您的阅读,制作不易,转载请注明出处。
分享
评论 抢沙发
登录后可见的头像-Trees 的秘密基地
欢迎您留下宝贵的见解!
提交
登录后可见的头像-Trees 的秘密基地
欢迎您留下宝贵的见解!
提交

请填写昵称

图形验证码
私密评论
请填写昵称 表情 代码 图片

    暂无评论内容