成功解决localhost is not a valid address

简介: 成功解决localhost is not a valid address

问题描述

安装hosted engine,填入Engine VM FQDN的时候出现报错:localhost is not a valid address



问题解决

本来已经在/etc/hosts里面设置了FQDN,但是这里还是出现了错误


后来经过一系列地排查,才发现网络配置没有设置成静态的!把BOOTPROTO的值改为static就行了!


vi /etc/sysconfig/network-scripts/ifcfg-ens33


将BOOTPROTO="dhcp"改为BOOTPROTO="static"


最后重启网卡


systemctl restart network


~点个赞再走吧~

相关文章
|
应用服务中间件 nginx
HOST 碰撞
HOST 碰撞
71 0
|
1月前
|
安全 关系型数据库 MySQL
bah-host碰撞-pspy+sheallinabox
bah-host碰撞-pspy+sheallinabox
17 1
|
6月前
|
监控 安全 网络安全
Failed password for invalid user www from xx.xx.xx.xxx port xxxxx ssh2 问题处理
【5月更文挑战第6天】Failed password for invalid user www from xx.xx.xx.xxx port xxxxx ssh2 问题处理
671 1
|
Java 应用服务中间件
成功解决Address localhost:1099 is already in use
成功解决Address localhost:1099 is already in use
|
应用服务中间件
Error:Remote staging type or host is not specified.
Error:Remote staging type or host is not specified.
156 0
location.host和location.hostname区别
location.host和location.hostname区别
146 0
|
Web App开发 缓存 网络协议
Shit! 我的host到底怎么了?
背景 那是今年五月的某一天,我的mac在切换系统host后,chrome迟迟不生效,依然访问的是原来的环境. 开发和测试同学在做项目时,需要经常进行 日常环境 预发环境 线上环境的切换,其实切的就是系统的host.如果浏览器总是延迟,或者死活不生效的活,基本上你就在那不停的刷新\刷新\刷新. 或者重新启动浏览器.心情会很烦躁的有木有. 解决方案 遇到这个问题的时候,一般我们有以
1595 0