202009-24 CentOS7系统搭建LAMP及更新PHP版本操作详解 本文实例讲述了CentOS7系统搭建LAMP及更新PHP版本操作。分享给大家供大家参考,具体如下:搭建LAMP环境用yum安装安装Apache安装Apache[root@localhost/]#yuminstallhttpdhttpd-devel启动Apache[root@localhost/]#systemctlstarthttpd设置Apache开机启动[root@localhost/]#systemctlenablehttpdCreatedsymlinkfrom/etc/systemd/system/multi-user.target.wants/httpd.serviceto/usr/lib/systemd/system/ht... 继续阅读 >
202009-24 Centos7安装swoole扩展操作示例 本文实例讲述了Centos7安装swoole扩展操作。分享给大家供大家参考,具体如下:我的PHP版本为PHP7.2.24更新源[root@localhosthtml]#yumupdate安装需要支持的扩展[root@localhosthtml]#yuminstallphp72w-devel[root@localhosthtml]#yuminstallphp72w-pear[root@localhosthtml]#yuminstallgcc[root@localhosthtml]#yuminstallgcc-c++[root@localhosthtml]#yuminstallgcc-g77安装swoole[root@localhost... 继续阅读 >
202009-24 centos7环境下swoole1.9的安装与HttpServer的使用方法分析 本文实例讲述了centos7环境下swoole1.9的安装与HttpServer的使用方法。分享给大家供大家参考,具体如下:一、下载swoole源码包https://github.com/swoole/swoole-src/releases如:swoole-src-1.9.6.tar.gz二、编译安装>yuminstallgccgcc-c++kernel-develmakeautoconf>tarxfswoole-src-1.9.6.tar.gz>cdswoole-src-1.9.6我的php是安装在/data/php56下,请自行修改>/data/php56/bin/phpize>./configure>make&&makei... 继续阅读 >