linux配置apache2
① 用linux命令重启apache2服务器失败是怎么回事
linux重启apache无反应的解决方法:
service httpd start ,输入ps -ef |grep httpd, 看apache进程是否在运行;
在别的机器上用IP访问下这台WEB服务器,看能否打开apache测试页
service httpd stop,再输入ps -ef |grep httpd 看apache进程是否在运行。
彻底删除APACHE,重新下载一个。
Linux是一套免费使用和自由传播的类Unix操作系统,是一个基于POSIX和UNIX的多用户、多任务、支持多线程和多CPU的操作系统。它能运行主要的UNIX工具软件、应用程序和网络协议。它支持32位和64位硬件。Linux继承了Unix以网络为核心的设计思想,是一个性能稳定的多用户网络操作系统。
② ubuntu linux + apache2+ svn 怎么实现外网访问IP地址限制
方法如下:
1) 在httpd.conf文件中添加下面语句,表示使用这个模块的功能
LoadMole authz_host_mole bin/mod_authz_host.so
2)然后是:
Options FollowSymLinks
AllowOverride None
Order deny,allow
allow from 10.10 192.168.1 #允许两个网段可以访问
denyfrom all
3)完整代码为:
<Location/svn>
DAVsvn
SVNPath/home/svn
AuthTypeBasic
AuthName"myprojectsubversionrepository"
AuthUserFile/etc/subversion/passwd
Requirevalid-user
OrderDeny,Allow
DenyfromAll
Allowfrom192.168.1-------------------------只有这个段的ip能访问。
</Location>
③ linux下Apache2的安装和配置
在Ubuntu中安装apache
安装指令:sudo apt-get install apache2
安装结束后:
产生的启动和停止文件是:/etc/init。d/apache2
启动:sudo apache2ctl -k start
停止:sudo apache2ctl -k stop
重新启动:sudo apache2ctl -k restart
配置文件保存在:/etc/apache2
需要说明的是,普通的apache发行版本配置文件是:
httpd。conf
Ubuntu发行版本的主配置文件是:
apache2。conf
在apache2。conf引用到了以下文件:
# 包含动态模块的配置:
Include /etc/apache2/mods-enabled/*。load
Include /etc/apache2/mods-enabled/*。conf
# 包含用户自己的配置:
Include /etc/apache2/httpd。conf
# 包含端口监听的配置:
Include /etc/apache2/ports。conf
# 包含一般性的配置语句片断:
Include /etc/apache2/conf。d/
# 包含虚拟主机的配置指令:
Include /etc/apache2/sites-enabled/
修改httpd。conf
增加以下内容:
ServerName 127。0。0。1:80
④ linux 如何重启apache
楼上的都可以,不过我个人用 httpd -k restart 关键是找到httpd这个文件。 [root@test bin]# httpd restart -bash: httpd: command not found 明显是bash在path所指的目录下找不到httpd,试试找到它,然后用绝对路径。比如我们这里是 /home/service/apache/bin/httpd -k restart
⑤ Linux下apache启动命令是什么
基本的操作方法:
本文假设你的apahce安装目录为/usr/local/apache2,这些方法适合任何情况
apahce启动命令:
推荐/usr/local/apache2/bin/apachectl start apaceh启动
apache停止命令
/usr/local/apache2/bin/apachectl stop 停止
apache重新启动命令:
/usr/local/apache2/bin/apachectl restart 重启
要在重启 Apache 服务器时不中断当前的连接,则应运行:
/usr/local/sbin/apachectl graceful
如果apache安装成为linux的服务的话,可以用以下命令操作:
service httpd start 启动
service httpd restart 重新启动
service httpd stop 停止服务
Linux系统为Ubuntu
一、Start Apache 2 Server /启动apache服务
# /etc/init.d/apache2 start
or
$ sudo /etc/init.d/apache2 start
二、 Restart Apache 2 Server /重启apache服务
# /etc/init.d/apache2 restart
or
$ sudo /etc/init.d/apache2 restart
三、Stop Apache 2 Server /停止apache服务
# /etc/init.d/apache2 stop
or
$ sudo /etc/init.d/apache2 stop