惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

W
WeLiveSecurity
爱范儿
爱范儿
MyScale Blog
MyScale Blog
F
Fortinet All Blogs
Y
Y Combinator Blog
罗磊的独立博客
IT之家
IT之家
人人都是产品经理
人人都是产品经理
Latest news
Latest news
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
Vercel News
Vercel News
K
Kaspersky official blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
T
Threatpost
J
Java Code Geeks
美团技术团队
Spread Privacy
Spread Privacy
B
Blog RSS Feed
L
Lohrmann on Cybersecurity
AWS News Blog
AWS News Blog
S
Schneier on Security
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
NISL@THU
NISL@THU
V
Visual Studio Blog
博客园_首页
V
V2EX
Cyberwarzone
Cyberwarzone
The Hacker News
The Hacker News
Last Week in AI
Last Week in AI
G
GRAHAM CLULEY
A
About on SuperTechFans
N
News | PayPal Newsroom
G
Google Developers Blog
N
Netflix TechBlog - Medium
The Cloudflare Blog
www.infosecurity-magazine.com
www.infosecurity-magazine.com
有赞技术团队
有赞技术团队
L
LINUX DO - 最新话题
博客园 - 司徒正美
The Last Watchdog
The Last Watchdog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
Forbes - Security
Forbes - Security
V
Vulnerabilities – Threatpost
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Google DeepMind News
Google DeepMind News

博客园 - tonyYe

请求筛选模块被配置为拒绝包含双重转义序列的请求。HTTP 错误 404.11 - Not Found asp.net页面传值方法汇总 - tonyYe - 博客园 ASP.NET 2.0中Page事件的执行顺序 {转} EM 无法启动,重新完全配置EM ToString - tonyYe - 博客园 快捷方式制作 ListView导出到Excel TreeView的NodeCheck联动 利用js去除打印时的页眉页脚 使用证书来做RSA非对称式加密 用证书实现windows 2003下IIS的SSL安全通信 Windows命令提示符大全 学习.net应该知道什么 C# 3.0新特性之扩展方法 针对构架师的.NET 3.0介绍 Microsoft .net 框架开发平台体系架构 MapGuide公共静态方法 查询保存在outlook里的用户名和密码 ASP.NET 2.0 GridView
Syntax error on line 198 httpd.conf: ServerAdmin takes one argument
tonyYe · 2010-04-21 · via 博客园 - tonyYe

启动Apache Start时出现异常:
Syntax error on line 198 of C:/Program Files/Apache Group/Apache2/conf/httpd.conf:
ServerAdmin takes one argument, The email address of the server administrator
解决方法:

# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
#
ServerAdmin

改为:
# ServerAdmin: Your address, where problems with the server should be
# e-mailed. This address appears on some server-generated pages, such
# as error documents. e.g. admin@your-domain.com
#ServerAdmin

配置完毕后: 
运行--->cmd-->键入:   d:    注释:进入D盘,由于我的apache安装在E盘键入:   cd apache2   注释:进入D:\apache2\目录
键入:   cd bin   注释:进入E:\apache2\bin\ 目录
键入: Apache.exe -k install -n apache2   注释:添加了apache这个服务了,下面我们要启动它
键入:    net start apache2 注释:启动apache2服务
关闭服务器是: net stop apache2

OK,问题解决