启动httpd报错Address already in use: AH00072 : make_ sock : could not bind to address [::]:5000

openstack修改httpd配置文件后重启失败

 

目录

一、报错信息

二、报错分析及解决


一、报错信息

Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details.

我们可以通过 systemctl status httpd.servicejournalctl -xe 命令查看服务状态与基本报错信息

二、报错分析及解决

1.启动httpd服务失败有可能是httpd.conf wsgi-keystone.conf配置文件修改错误造成

修改文件时尽量注意内容格式,能用拷贝” cp ”命令尽量不要复制粘贴

确定配置文件无误后, 启动或重启httpd服务

# systemctl start httpd.service  启动httpd服务

# systemctl restart httpd.service  重启httpd服务

 

重启若仍报一下错误,则有可能第二种错误:地址端口被占用

2.由报错信息可以看出:httpd服务地址端口被占用

Address already in use: AH00072 : make_ sock :  could not bind to address  [::]:5000  

翻译:地址 已经被占用,不能绑定5000端口

启动httpd报错Address already in use: AH00072 : make_ sock : could not bind to address [::]:5000_第1张图片

配置文件无误的情况下,重启虚拟机或服务器

重启httpd服务,就可解决

# shutdown -r now                         linux重启命令

# systemctl restart httpd.service

 

你可能感兴趣的:(#,OpenStack搭建错误集)