㈠ windows如何启动Apache
1、首先我们打开电脑桌面,右击“此电脑”,点击“管理”。
㈡ liunx重启apache服务的命令
service httpd restart是windows下用的!!!
linux下直接找到执行文件重启啊!
补充:把完整的路径加上,或者到路径下,执行文件目录内执行
推荐你一个网站bbs.chinaunix.net,我的用户名是kecai_cale,那上面高人多
㈢ apache tomcat怎么用命令启动
下列可以直接在cmd中运行(要进入tomcat的bin目录),也可直接双击startup.bat 启动tomcatshutdown.bat 关闭tomcatservice install (service.bat加上 install参数)安装成服务.
㈣ 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
㈤ Apache是怎样启动的
和监控部门提到一个问题,开发部门的人启动Apache是使用root启动,但是监控部门的人认为不正常,用root启动有安全隐患。如果Apache有漏洞,服务器就被黑了。 我在一台RHEL4上编译安装了Apache,用了全默认参数,使用下面命令启动 /usr/local/apache/bin/apachectl start 看系统里的情况 [root@localhost conf]# ps -ef | grep httpd | grep -v grep [root@localhost conf]# cat httpd.conf | grep daemon # httpd daemons, you will need to change at least LockFile and PidFile. User daemon Group daemon # socket used to communicate with the CGI daemon of mod_cgid. 试下把daemon改成root看看 [root@localhost conf]# /usr/local/apache/bin/apachectl start Syntax error on line 65 of /usr/local/apache/conf/httpd.conf: Error:\tApache has not been designed to serve pages while\n\trunning as root. There are known race conditions that\n\twill allow any local user to read any file on the system.\n\tIf you still desire to serve pages as root then\n\tadd -DBIG_SECURITY_HOLE to the CFLAGS env variable\n\tand then rebuild the server.\n\tIt is strongly suggested that you instead modify the User\n\tdirective in your httpd.conf file to list a non-root\n\tuser.\n [root@localhost conf]# cat httpd.conf | grep root # httpd as root initially and it will switch. User rootGroup root可以看到,Apache根本不给你启动! 根据Apache的文档里这么描述 如果配置文件中Listen定义的是默认的80端口(或1024以下),那么启动Apache将需要root权限以将它绑定在特权端口上。一旦服务器开始启动并完成了一些诸如打开日志文件之类的准备操作,它将创建很多子进程来完成一些诸如侦听和回应客户端请求的工作。 httpd主进程仍然以root用户的权限运行,而它的子进程将以一个较低权限的用户运行。这将由你选择的多路处理模块进行控制。 所以,用root启动Apache并不存在安全问题。非root用户不能启动1024以下的端口,所以非root启动Apache不能启动80,443端口,到时候再用iptable做跳转就是很麻烦的事情,而且iptables性能也是问题。 像bind这样的程序使用的是chroot的方式来解决权限控制问题,用root启动一样没有安全问题。 有些时候,这些想法都是人传人,大多数人不仔细想想,找找内因。
㈥ 怎么用命令行模式启动apache
看来你这个问题,没什么人知道答案了,高分问题,这么久了还没解决基本上是没希望了。我路过过来看看,同学如果到时间了还没找到合适的答案,就把分给我吧,谢谢了。祝你早日解决问题。 祝全家幸福,天天快乐
㈦ 请教apache启动命令
楼主说的是Linux上的web服务器软件吗?
如果是
Ubuntu上service httpd start
Cent OS上service apache start
㈧ linux 如何重启apache
假设当前Linux用户的apahce安装目录为/usr/local/apache2,那么在命令行终端中使用以下命令启动,停止和重启apache。
1. 启动apahce的命令:
/usr/local/apache2/bin/apachectl start apache
2. 停止apache的命令:
/usr/local/apache2/bin/apachectl stop
3. 重启apache的命令:
/usr/local/apache2/bin/apachectl restart
要在重启 Apache 服务器时不中断当前的连接,则应运行:
/usr/local/sbin/apachectl graceful
如果当前用户的apache已经安装为linux的服务的话,可以使用以下命令进行以上操作。
1. 启动apache
service httpd start
2. 停止服务apache
service httpd stop
3. 重新启动apache
service httpd restart
㈨ Apache如何重启
假设当前Linux用户的apahce安装目录为/usr/local/apache2,那么在命令行终端中使用以下命令启动,停止和重启apache。
1. 启动apahce的命令:
/usr/local/apache2/bin/apachectl start apache
2. 停止apache的命令:
/usr/local/apache2/bin/apachectl stop
3. 重启apache的命令:
/usr/local/apache2/bin/apachectl restart
要在重启 Apache 服务器时不中断当前的连接,则应运行:
/usr/local/sbin/apachectl graceful
如果当前用户的apache已经安装为linux的服务的话,可以使用以下命令进行以上操作。
1. 启动apache
service httpd start
2. 停止服务apache
service httpd stop
3. 重新启动apache
service httpd restart
㈩ Linux中怎样启动apache服务
你apache安装在哪个文件夹下/usr/local/apache还是/etc/httpd/ 如果是/usr/local/apache 就/usr/local/apache/bin/apachectl start 就可以了