首页 > 代码库 > ubuntu 手动apache记录
ubuntu 手动apache记录
1.下载apache
tar -xvzf httpd.xx 解压
2.下载安装pcre
Download PCRE from PCRE.org
解压,进入文件夹中
./configure --prefix=/usr/local/pcre
有可能会提示configure: error: You need a C++ compiler for C++ support.
那么就安装c++组件
age-get install g++
makemake install
3.下载apr, apr-util
进入apache文件夹中的srclib中
wget http://mirrors.axint.net/apache/apr/apr-1.4.6.tar.gztar -xvzf apr-1.4.6.tar.gzcd apr-1.4.6/./configure
--prefix=/usr/local/pcre
make
make install
# APR Utils
wget http://mirrors.axint.net/apache//apr/apr-util-1.4.1.tar.gz
tar -xvzf apr-util-1.4.1.tar.gz
cd apr-util-1.4.1
./configure --with-apr=/usr/local/apr
make
make install4.进入apache文件夹中
./configure --prefix=/usr/local/apache2 --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/--with-pcre=/usr/local/pcre
make
make install
5.进入/usr/local/apache2/conf/httpd.conf
搜索ServerName
添加 ServerName localhost:80
完成
ubuntu 手动apache记录
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。