You can install Apache as a Windows NT service as follows from the command prompt at the Apache bin subdirectory:
httpd -k install
If you need to specify the name of the service you want to install, use the following command. You have to do this if you have several different service installations of Apache on your computer.
httpd -k install -n "MyServiceName"
If you need to have specifically named configuration files for different services, you must use this:
httpd -k install -n "MyServiceName" -f "c:\files\my.conf"
If you use the first command without any special parameters except -k install, the service will be called Apache2 and the configuration will be assumed to be conf\httpd.conf.
Removing an Apache service is easy. Just use:
httpd -k uninstall
The specific Apache service to be uninstalled can be specified by using:
httpd -k uninstall -n "MyServiceName"
Normal starting, restarting and shutting down of an Apache service is usually done via the Apache Service Monitor, by using commands like NET START Apache2 and NET STOP Apache2 or via normal Windows service management. Before starting Apache as a service by any means, you should test the service's configuration file by using:
httpd -n "MyServiceName" -t
You can control an Apache service by its command line switches, too. To start an installed Apache service you'll use this:
httpd -k start
To stop an Apache service via the command line switches, use this:
httpd -k stop
or
httpd -k shutdown
You can also restart a running service and force it to reread its configuration file by using:
httpd -k restart
By default, all Apache services are registered to run as the system user (the LocalSystem account). The LocalSystem account has no privileges to your network via any Windows-secured mechanism, including the file system, named pipes, DCOM, or secure RPC. It has, however, wide privileges locally.
分享到:
相关推荐
5. 启动:安装完成后,启动Apache服务,可以通过命令行工具如`apachectl start`或系统服务管理工具进行操作。 二、Apache 2.2新特性与优化 1. 更强的安全性:Apache 2.2引入了增强的安全特性,如支持SFTP协议,增强...
安装Apache 2.2时,描述中提到的方法是在命令行中运行`httpd -k install`。这会执行安装过程,通常包括注册服务以便于通过服务管理器启动和停止Apache。在Windows环境下,你需要确保已经正确配置了环境变量,使得...
1. 如果安装后没有自动启动服务,可以通过命令行手动启动Apache服务: - 打开命令提示符,切换到Apache的`bin`目录下。 - 运行以下命令安装服务: ```sh httpd.exe -k install -n apache2.2 ``` - 启动服务: ...
2. 启动与停止服务:使用Apache提供的命令行工具,如在Linux上是`apachectl start` 和 `apachectl stop`,在Windows上通过控制面板或命令行启动服务。 3. 配置日志:Apache的日志文件默认在`logs`目录下,包括访问...
在Win7环境下,Apache2.2的安装通常包括下载安装包,配置httpd.conf文件以指定服务器根目录和启用必要的模块,以及设置系统服务以便在后台自动启动。 PHP(Hypertext Preprocessor)5.3是PHP语言的一个版本,提供了...
- 使用命令行启动Apache服务:`C:\Apache2.2\bin>httpd -k start` #### 四、停止Apache服务 停止Apache服务同样有多种方法可供选择,包括通过命令行或服务管理工具。 - **命令行停止示例**: - 使用命令行停止...
- 安装完成后,Apache会添加到系统服务中,可以通过服务管理器启动或停止Apache服务。 2. **PHP的安装与配置**: - `php-5[1].2.10-Win32.zip`文件是PHP 5.2.10版本的Windows ZIP包,需要解压至合适的位置,如`C:...
10. **调试与维护**:使用`apachectl`或`httpd`命令行工具,可以启动、停止、重启服务器,检查配置语法,以及获取服务器状态。 在分析和使用Apache 2.2源码时,开发者可以通过阅读源代码了解其内部工作机制,学习...
### Windows下安装Apache2.2 + PHP5.3 + MySQL5.1 #### 安装步骤详解 在Windows操作系统上构建一个完整的Web开发环境通常涉及安装Apache Web服务器、PHP解析器以及MySQL数据库管理系统。本文将详细介绍如何在...
本篇文章将详细阐述如何配置Tomcat6与Apache2.2的集群,帮助你理解集群的工作原理,并提供实践步骤来实现这一目标。 一、Tomcat集群概述 Tomcat集群是指通过多台Tomcat服务器协同工作,共同处理HTTP请求,以达到...
本配置备忘录主要关注如何在Windows上配置Apache2.2与Tomcat5.5,同时利用APR(Apache Portable Runtime)提升性能。APR是一个C语言库,提供了操作系统接口的抽象层,使得Apache可以在多种平台上运行得更加高效。 ...
2. **环境配置**:确保Apache安装目录下的`bin`目录路径已经被添加到系统的环境变量中,以便可以在命令行中直接调用Apache的相关命令。 #### 二、手动添加Apache服务步骤 接下来,我们分步介绍如何在Windows环境下...
4. **运行服务**:安装完成后,可以通过命令行使用`httpd.exe`启动或停止Apache服务。在服务管理器中也可以找到Apache服务进行操作。 5. **测试服务器**:在浏览器中输入`http://localhost`,如果服务器配置正确,...
在Apache2.2上配置SVN,可以让用户通过Web接口进行版本控制操作,无需直接访问服务器的命令行。 3. **TortoiseSVN 1.6.6**:TortoiseSVN是Subversion的一个图形化客户端,尤其适合Windows用户。它提供了与Windows...
- 检查Apache服务是否启动成功:`root# ps aux | grep httpd; netstat -ntulp | grep :80` #### 三、Tomcat 6.0 的安装与配置 1. **安装Tomcat 6.0**: - 下载Tomcat 6.0.16的压缩包。 - 解压后设置环境变量。 ...
在文档"WebLogic10.3+Apache2.2集群配置图文指南(含windows版和unix版).doc"中,应包含了详细的步骤、截图和配置示例,帮助读者逐步完成整个配置过程。请确保仔细阅读和按照指南操作,以避免配置错误。配置完成后...
在IT行业中,版本控制系统是团队协作开发不可或缺的工具,它能帮助开发者跟踪代码变更,管理项目历史,并确保团队成员间的一致性。本教程将详细讲解如何在Windows XP操作系统上,利用Apache2.2和Subversion 1.6.17...
- 安装完成后,右下角状态栏应出现绿色图标表示Apache服务已启动。 2. **测试Apache服务**: - 在浏览器地址栏输入`http://127.0.0.1`,如果显示默认欢迎页面,则表示安装成功。 3. **配置Apache**: - 打开...