linux安装程序(apache)
linux下安装程序,一般3个步骤:./configuremakemakeinstall用这个方式在linux中安装了apache,可有个问题,安装后启动时需要进入到安装...
linux下安装程序,一般3个步骤:
./configure
make
make install
用这个方式在linux中安装了apache,可有个问题,安装后启动时需要进入到安装路径里面去才可以启动。
比如:/usr/local/apache/bin/apachectl start
(
这个的安装过程是这样的:
./configure --prefix=/usr/local/--enable-so
make
make install
)
这里的问题是:
1.如何安装程序会把一些主要的命令copy到系统路径中?比如这里的apachectl,httpd(在卸载系统内部的apache之前可以用全局命令来启动和关闭)
2.apachectl,httpd有什么区别?
3.这种方式安装程序和rpm安装有何不同?为何卸载前用 rpm -qa|grep httpd可以检测到版本号。用上面的方式安装后就检测不到?
麻烦高手教教,感激。 展开
./configure
make
make install
用这个方式在linux中安装了apache,可有个问题,安装后启动时需要进入到安装路径里面去才可以启动。
比如:/usr/local/apache/bin/apachectl start
(
这个的安装过程是这样的:
./configure --prefix=/usr/local/--enable-so
make
make install
)
这里的问题是:
1.如何安装程序会把一些主要的命令copy到系统路径中?比如这里的apachectl,httpd(在卸载系统内部的apache之前可以用全局命令来启动和关闭)
2.apachectl,httpd有什么区别?
3.这种方式安装程序和rpm安装有何不同?为何卸载前用 rpm -qa|grep httpd可以检测到版本号。用上面的方式安装后就检测不到?
麻烦高手教教,感激。 展开
展开全部
1、./configure --prefix=/usr/local/ 这个是指定安装目录
2、这种方式比rpm包安装有非常好的可定制性
3、想用全局命令启动和关闭也很简单,只要在编译安装完之后执行这几步
添加到自启动
# cp /usr/local/www/bin/apachectl /etc/rc.d/init.d/httpd
然后 vi /etc/rc.d/init.d/httpd 添加(#!/bin/sh下面)
# chkconfig: 2345 10 90
# description: Activates/Deactivates Apache Web Server
最后,运行chkconfig把Apache添加到系统的启动服务组里面:
# chkconfig --add httpd
# chkconfig httpd on
更多详细信息请看:《LAMP环境搭建》一文
http://bbs.yahunet.com/thread-737-1-1.html
2、这种方式比rpm包安装有非常好的可定制性
3、想用全局命令启动和关闭也很简单,只要在编译安装完之后执行这几步
添加到自启动
# cp /usr/local/www/bin/apachectl /etc/rc.d/init.d/httpd
然后 vi /etc/rc.d/init.d/httpd 添加(#!/bin/sh下面)
# chkconfig: 2345 10 90
# description: Activates/Deactivates Apache Web Server
最后,运行chkconfig把Apache添加到系统的启动服务组里面:
# chkconfig --add httpd
# chkconfig httpd on
更多详细信息请看:《LAMP环境搭建》一文
http://bbs.yahunet.com/thread-737-1-1.html
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询