源码安装LAMP
Posted by
seobib
2 September,2010
(0)Comment
另外apache开启url_rewrite扩展,php开启curl,soap,imagick,mb_string,mysql,mysqli扩展等。
follow me! go!
[编辑] 第一步,安装Apache2
下载httpd-2.0.59.tar.gz,执行
(下面的 xzfv 应该是 zxvf 吧 By Missll)
sudo tar xzfv httpd-2.0.59.tar.gz sudo cd httpd-2.0.59 sudo ./configure --prefix=/usr/local/apache2 --enable-module=most --enable-rewrite --enable-shared=max --enable-so
如果提示如下错误:
checking for C compiler default output file name... configure: error: C compiler cannot create executables
原因是未安装libc6-dev ,执行
sudo apt-get install build-essential
就ok了。
然后从新执行:
sudo ./configure --prefix=/usr/local/apache2 --enable-module=most --enable-rewrite --enable-shared=max --enable-so
未报错,接着执行
sudo make sudo make install sudo groupadd apache sudo useradd -g apache apache sudo passwd apache sudo chown -R apache:apache /usr/local/apache2
修改apache的配置文件,执行
sudo vi /usr/local/apache2/conf/httpd.conf
找到
User nobody Group #-1
修改成
User apache Group apache
找到
#ServerName www.example.com:80
改为
ServerName *:80
保存!
执行命令
sudo /usr/local/apache2/bin/apachectl start
启动apache.
打开浏览器,访问http://localhost
如果一切顺利,应该可以看到apache的测试页面。恭喜你,apache安装好了!
待续.....
Related Items
Categories :
网络安全
Comments
Leave a comment
Or, take a look at Archives and Categories