共计 1247 个字符,预计需要花费 4 分钟才能阅读完成。
背景
ps:在本文中,假设我系统的 hostname 为 node1。
使用 ceph-deploy 命令搭建 Ceph 集群,执行 ceph new node1 时,出现如下错误:
[node1][INFO ] Running command: /bin/ip addr show
[node1][DEBUG ] IP addresses found: ['192.168.56.16', '172.17.0.1', '10.0.2.15']
[ceph_deploy.new][DEBUG ] Resolving host node1
[ceph_deploy][ERROR ] UnableToResolveError: Unable to resolve host: node1
调用该命令之前,已经设置了 ssh 免密码登录,并且都可以 ping 通和免密码登录到 node1 的。
原因
Ubuntu 有一个让人头痛的特性,就是在 /etc/hosts 配置文件中,让 hostname 使用了它的回环 loopback 地址。这个特性使得很多服务无法检测到真正的地址,这里,ceph-deploy 中,ceph_deploy.util.get_nonlocal_ip 获取到的是 127 网段的地址,然后就报错不能解析 hostname 了。
解决方法
在 /etc/hosts 中,把回环地址对应的 hostname 给删除掉。再添加一行真正的 ip 地址和 hostname 的对应关系,即可。
更多 Ceph 相关教程见以下内容:
在 CentOS 7.1 上安装分布式存储系统 Ceph http://www.linuxidc.com/Linux/2015-08/120990.htm
Ceph 环境配置文档 PDF http://www.linuxidc.com/Linux/2013-05/85212.htm
CentOS7 下部署 Ceph 集群(版本 10.2.2)http://www.linuxidc.com/Linux/2017-02/140728.htm
Ceph 的安装过程 http://www.linuxidc.com/Linux/2013-05/85210.htm
如何升级 Ceph 版本及注意事项 http://www.linuxidc.com/Linux/2017-02/140631.htm
HOWTO Install Ceph On FC12, FC 上安装 Ceph 分布式文件系统 http://www.linuxidc.com/Linux/2013-05/85209.htm
实验环境 Ceph 9.2.1 部署笔记 http://www.linuxidc.com/Linux/2016-11/137094.htm
Ubuntu 16.04 快速安装 Ceph 集群 http://www.linuxidc.com/Linux/2016-09/135261.htm
Ceph 的详细介绍:请点这里
Ceph 的下载地址:请点这里
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-04/142519.htm