首页
更多应用
Search
1
修改iview的标签为i-的形式而不是驼峰的形式
2,791 阅读
2
PHP微信和企业微信签名
2,522 阅读
3
在VUE中怎么全局引入sass文件
2,223 阅读
4
vscode硬件占用较高解决方案
2,017 阅读
5
解决Macos下storm系列IDE卡顿的问题
1,975 阅读
默认分类
JS
VUE
CSS
mac使用技巧
React
fastmock
登录
/
注册
Search
标签搜索
react
js
vue
vscode
nodejs
项目
代码
webpack
工具
nginx
小程序
css
fastmock
eslint
npm
http
vue-cli3
git
浏览器
const
fastmock技术社区
累计撰写
102
篇文章
累计收到
26
条评论
首页
栏目
默认分类
JS
VUE
CSS
mac使用技巧
React
fastmock
页面
更多应用
搜索到
1
篇与
的结果
2017-11-08
Apache httpd.conf 配置文件语法验证
Apache 的 httpd.conf文件修改之后,必须重启服务器才能生效。有时服务器在提供服务的时候,直接更改配置,重启服务,会带来很大的危险性。比如下面这样的错误日志11:22:48 [Apache] Error: Apache shutdown unexpectedly. 11:22:48 [Apache] This may be due to a blocked port, missing dependencies, 11:22:48 [Apache] improper privileges, a crash, or a shutdown by another method. 11:22:48 [Apache] Press the Logs button to view error logs and check 11:22:48 [Apache] the Windows Event Viewer for more clues 11:22:48 [Apache] If you need more help, copy and post this 11:22:48 [Apache] entire log window on the forums咋一看 以为是端口被占用,遇到这样的问题,我们先查看端口占用情况1,开始—->运行—->cmd,或者是window+R组合键,调出命令窗口,2,输入命令:netstat -ano,列出所有端口的情况。在列表中我们观察“本地地址”那一列被占用的端口如果通过以上方法发现我们的端口没有被占用,那多半是我们的Apache配置文件出错了,那么我们需要一种方法,可以检测我们的Apache配置文件有没有语法错误。如果能在修改配置之后,先验证语法正确与否,再重启服务器,则能避免一些不必要的错误。对以上需求,Apache本身提供了相应的命令来验证配置文件的语法。Windows环境的命令:httpd -t (注:如果您的电脑没有未Apache配置环境变量,需要进入到Apache目录的bin目录下执行该命令)Linux环境的命令:[root@server bin]# ./apachectl configtest如果正确无误,会显示Syntax OK信息Syntax OK如果存在错误,则会显示出错的行号以及错误信息,如下:AH00526: Syntax error on line 639 of D:/xampp/apache/conf/httpd.conf: <Directory> directive missing closing '>' AH00526: Syntax error on line 639 of D:/xampp/apache/conf/httpd.conf: <Directory> directive missing closing '>'
2017年11月08日
1,273 阅读
0 评论
0 点赞