openstack安装时检测apache无法启动

在安装openstack kilo版本时有一步检测apache无法启动,搜遍了google没有搜到相关信息只好自己动手了,我用的是CentOS-7-x86_64位系统,报错信息如下:

ERROR : Error appeared during Puppet run: 192.168.209.143_horizon.pp

Error: Could not start Service[httpd]: Execution of ‘/usr/bin/systemctl start httpd‘ returned 1: Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details.

按照提示信息执行了一下"journalctl -xe",其中找到了以下信息:

Dec 29 11:06:33 controller httpd[29959]: AH00526: Syntax error on line 11 of /etc/httpd/conf.d/fcgid.conf:

Dec 29 11:06:33 controller httpd[29959]: Invalid command ‘FcgidIPCDir‘, perhaps misspelled or defined by a module not included in the server configuration

Dec 29 11:06:33 controller systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE

Dec 29 11:06:33 controller kill[29963]: kill: cannot find process ""

Dec 29 11:06:33 controller systemd[1]: httpd.service: control process exited, code=exited status=1

Dec 29 11:06:33 controller systemd[1]: Failed to start The Apache HTTP Server.

其中两段红色英文字体提示/etc/httpd/conf.d/fcgid.conf 这个文件有无效的命令Invalid command ‘FcgidIPCDir‘,有可能是拼写错误也有可能是模块未加载导致,看文件全部信息如下:

[[email protected] ~]# cat  /etc/httpd/conf.d/fcgid.conf

# This is the Apache server configuration file for providing FastCGI support

# through mod_fcgid

#

# Documentation is available at

# http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html

# Use FastCGI to process .fcg .fcgi & .fpl scripts

AddHandler fcgid-script fcg fcgi fpl

# Sane place to put sockets and shared memory file

FcgidIPCDir /run/mod_fcgid

FcgidProcessTableFile /run/mod_fcgid/fcgid_shm

这是一个调用mod_fcgid模块并提供FastCGI 的apache server的配置文件,一看文件中确实没有加载mod_fcgid模块,

所以在文件中加载该模块

    LoadModule fcgid_module modules/mod_fcgid.so


完整文件如下:

fcgid.conf

# This is the Apache server configuration file for providing FastCGI support

# through mod_fcgid

#

# Documentation is available at

# http://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html

LoadModule fcgid_module modules/mod_fcgid.so

# Use FastCGI to process .fcg .fcgi & .fpl scripts

AddHandler fcgid-script fcg fcgi fpl

# Sane place to put sockets and shared memory file

FcgidIPCDir /var/run/mod_fcgid

FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm


在启动一下

[[email protected] ~]# apachectl start

[[email protected] ~]# apachectl status

* httpd.service - The Apache HTTP Server

Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled; vendor preset: disabled)

Drop-In: /usr/lib/systemd/system/httpd.service.d

`-openstack-dashboard.conf

Active: active (running) since Fri 2016-12-30 16:45:48 CST; 6s ago

Docs: man:httpd(8)

时间: 2024-10-20 21:45:38

openstack安装时检测apache无法启动的相关文章

安装Wamp后 Apache无法启动的解决方法

安装Wamp后 Apache无法启动的解决方法,网上的解决方案可以说是五花八门,有些说了一大推,一点作用都起不到. 其实解决方法只需两步: 1.安装路径不能包含有中文,这个我不知道为什么,总之如果安装路径中包含有中文,接下来无论做多少配置工作都是徒劳. 2.安装好后 修改httpd.conf文件 把里面的80端口 改成其他端口 比方改为:8080 ,如果没有端口冲突可以不用修改. 做好以上这两步重启Wamp就可以了. 就这么简单,没必要搞太多东西.

安装xampp后apache不能启动解决方法

(安装提示:重要! 由于激活用户帐户控制(uac)在您的系统的一些XAMPP的功能可能是限制.使用UAC请避免将XAMPP安装到C:程序文件(x86)(缺少写的权限).在此设置后,或与系统配置实用程序禁用UAC.) Important! Because an activated User Account Control (UAC) on your sytem some functions of XAMPP are possibly restricted. With UAC please avoi

在windows上安装wamp时遇到apache无法启动,图标为橙色

1.首先测试端口号是否被占用,如果端口号被占用,修改相对应文件的端口号,修改端口号的方法网上很容易搜到. 2.如果端口号没有被占用,cd到httpd.exe目录下,查看错误原因,这里我显示的错误是httpd.conf的62行地址或域名无效,打开httpd.conf的62行,把最后面的#删掉,保存就好了.(这里用记事本打开可能会乱,建议用notepad++打开)

【SQL Server】sql2012安装时卡在正在启动操作系统功能"NetFx3"上不动的解决办法

安装完windows8 后开始安装sql2012,安装过程中停在“正在启动操作系统功能"NetFx3"”不动了,很是着急,于是上网查了一下资料,原来NetFx3指的是Framework3.5,于是从微软官方下载了framework 3.5,安装完后,继续按照sql2012,顺利通过. 百度软件中心下载地址:http://rj.baidu.com/soft/detail/23411.html 微软官方地址:http://www.microsoft.com/zh-cn/download/d

apache无法启动:php 因为计算机中丢失 MSVCR110.dll

操作系统:win 7 旗舰 sp1 x64 环境: 已经安装过Visual C++ Redistributable for Visual Studio 2012 x64,c++ 2012的x86 没有安装 问题: apache无法启动,去除apache配置中的php module load配置,apache可以启动. MSVCR110.dll 文件已存在于c:\windows\system32下,apache启动报错,单独运行php,使用php.exe -v测试php,仍然提示: php 因为计

Linux/CentOS 服务安装/卸载,开机启动chkconfig命令详解|如何让MySQL、Apache开机启动?

chkconfig chkconfig在命令行操作时会经常用到.它可以方便地设置和查询不同运行级上的系统服务.这个可要好好掌握,用熟练之后,就可以轻轻松松的管理好你的启动服务了. 注:谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接. 语法: chkconfig       [--add]      [--del]     [--list]      [系统服务] chkconfig       [--level/levels]      [等级代号]     

使用phpstuby时,Apache或mysql无法启动,端口被占用

使用phpstuby时,Apache或mysql无法启动,端口被占用,怎么办? 原因: 其它程序占用了80或3306端口. 如果占用了80端口则Apache无法启动: 如果占用了3306端口则mysql无法启动. 解决方法: 1.找到相关进程,停止进程(不推荐,耗时间): 2.右键点击右下角phpstuby小图标->点击环境端口检测 然后点击:“尝试强制关闭相关进程并启动” 启动成功,Ok

WinXP SP3 下安装 Android SDK,模拟器启动时出现错误...

============问题描述============ WinXP SP3 下安装 Android SDK,模拟器启动时出现错误. 安装了两个版本的 Android SDK,都是一样的. installer_r23.0.2-windows.exe 和 installer_r22.6-windows.exe 请问怎么可以解决这个问题?多谢!!! ============解决方案1============ 这个自带的模拟器太慢,下一个bluestakes或genymotion吧 =========

64位win7 安装apache 无法启动此程序 因为计算机中丢失 MSVCR100.dll

点击链接下载: Microsoft Visual C++ 2010 SP1 Redistributable Package (x64) 安装后就好了 64位win7 安装apache 无法启动此程序 因为计算机中丢失 MSVCR100.dll,布布扣,bubuko.com