1.安装etcd问题::Job for etcd.service failed because a timeout was exceeded. See "systemctl status etcd.service"
解决方案1:
在etcd.conf配置文件中的其他节点信息必须使用: " http:" 而不能使用“ https: ”。
解决方案2:
更新etcd系统默认配置
当前使用的是etcd v3版本,系统默认的是v2,通过下面命令修改配置。
# vi /etc/profile
在文件末尾追加:
export ETCDCTL_API=3
让更改生效:
# source /etc/profile
希望能解决您的问题!!