网上下载源码包 wget http://网址
如果没有wget yum install -y wget
建议下载下来的源码包,统一放到/usr/local/scr/下,方便维护管理
养成查看INSTALL和README文档的习惯,内有软件安装方法和详细信息。
1. ./configure --prefix=/usr/local/apache 配置安装路径
可用echo $? 查看返回值,确定是否有错误。返回0为正常。
2. make 编译过程 可用echo $? 查看返回值,确定是否有错误。返回0为正常。
3.make install 安装编译好的软件
转载于:https://blog.51cto.com/llzdwyp/1678725