yum groupinstall “Development tools” -y
yum groupinstall “Desktop Platform Development” -y
yum install cmake pcre-devel ncurses-devel openssl-devel libcurl-devel
apache源码方式安装配置
0.依赖包的安装 apr-1.5.2.tar.bz2 apr-util-1.5.4.tar.bz2(生成安装配置文件的时候记得指定apr路径,不然会报错./configure --with-apr=/usr/local/apr/bin/apr-1-config)
1.解压源码包 tar xf
2.通过配置configure(脚本文件)来定制软件安装的目录(可以把下面命令写入脚本中一次执行),功能 ./configure
./configure
–enable-modules=all
–enable-mods-shared=all
–enable-so
–enable-rewrite
–with-pcre
–enable-ssl
–with-mpm=prefork
–with-apr=/usr/local/apr/bin/apr-1-config
–with-apr-util=/usr/local/apr/bin/apu-1-config
3.使用命令进行编译(第一步后会在软件目录生成一个makefile,此文件是编译规则文件,make命令会找当前目录的makefile,根据makefile文件来编译软件安装程序) make
4.安装程序编译完成后,使用命令安装 make install默认安装目录 /usr/local/apache2
5.增加环境变量export PATH=/usr/local/apache2/bin/:$PATH(不需此步,设置变量只是为了命令 而启动是通过脚本来的,只需要把启动脚本/usr/local/apache2/bin/apachectl复制到/etc/init.d下即可)
LAMP环境搭建-php环境搭建
最新推荐文章于 2021-05-08 19:35:36 发布