Ansible:无法创建 /etc/ansible/facts.d/openshift.fact,权限被拒绝
Ansible: Unable to create /etc/ansible/facts.d/openshift.fact, permission denied
我正在关注 this blog 使用 ansible 在 OpenStack 上安装 OpenShift Origin V3。但是我收到错误
"Could not create fact file: %s, error: %s" % (filename, ex)
main.OpenShiftFactsFileWriteError: Could not create fact file: /etc/ansible/facts.d/openshift.fact, error: [Errno 13] Permission
denied: '/etc/ansible/facts.d'
目标系统是CentOS,我可以在目标系统上做无密码sudo。我什至添加了 /etc/sudoers
centos All=(ALL) NOPASSWD:ALL
所有节点以及我所在的系统 运行ning ansible。
在我 运行 ansible 系统中,我尝试以 sudo 和 root 身份执行,但结果相同。
我不确定它在哪里面临权限被拒绝,我的意思是在主机或目标系统上。
Ansible 主机:
[OSEv3:children"]
masters
nodes
[OSEv3:vars]
ansible_ssh_user=centos
ansible_sudo=true
#ansible_ssh_user=root
product_type=openshift
deployment_type=origin
[masters]
192.168.144.132 openshift_public_hostname=master.novalocal openshift_ip=10.0.1.163 openshift_public_ip=192.168.144.132
[nodes]
192.168.144.128 openshift_public_hostname=node1.novalocal openshift_ip=10.0.1.164 openshift_public_ip=192.168.144.128 openshift_node_labels="{'region': 'primary', 'zone': 'east'}"
192.168.144.129 openshift_public_hostname=node2.novalocal openshift_ip=10.0.1.165 openshift_public_ip=192.168.144.129 openshift_node_labels="{'region': 'primary', 'zone': 'west'}"
Ansible.cfg
[defaults]
hostfile = ansible_hosts
remote_user = centos
host_key_checking = False
日志如下:
TASK: [openshift_facts | Ensure PyYaml is installed] **************************
ok: [192.168.144.132] => (item=PyYAML)
TASK: [openshift_facts | Gather Cluster facts] ********************************
failed: [192.168.144.132] => {"failed": true, "parsed": false}
Traceback (most recent call last):
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 6355, in <module>
main()
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 1222, in main
openshift_facts = OpenShiftFacts(role, fact_file, local_facts, additive_facts_to_overwrite)
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 999, in __init__
self.facts = self.generate_facts(local_facts, additive_facts_to_overwrite)
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 1013, in generate_facts
local_facts = self.init_local_facts(local_facts, additive_facts_to_overwrite)
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 1194, in init_local_facts
save_local_facts(self.filename, new_local_facts)
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 924, in save_local_facts
"Could not create fact file: %s, error: %s" % (filename, ex)
__main__.OpenShiftFactsFileWriteError: Could not create fact file: /etc/ansible/facts.d/openshift.fact, error: [Errno 13] Permission denied: '/etc/ansible'
OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: auto-mux: Trying existing master
debug1: mux_client_request_session: master session id: 2
Shared connection to 192.168.144.132 closed.
FATAL: all hosts have already failed -- aborting
PLAY RECAP ********************************************************************
to retry, use: --limit @/root/config.retry
192.168.144.132 : ok=6 changed=0 unreachable=0 failed=1
localhost : ok=7 changed=0 unreachable=0 failed=0
我之前没有使用ansible的经验,所以我无法调试更多。
这个解决方案似乎很简单。我在 google ansible 组中找到了它。
只需添加
sudo = true
sudo_user = root
在 ansible.cfg 文件中。
至少这个错误消失了,但我遇到了新的错误。
编辑
正如下面评论中所建议的,sudo_user 必须是 root,因此相应地更改了答案。
我正在关注 this blog 使用 ansible 在 OpenStack 上安装 OpenShift Origin V3。但是我收到错误
"Could not create fact file: %s, error: %s" % (filename, ex) main.OpenShiftFactsFileWriteError: Could not create fact file: /etc/ansible/facts.d/openshift.fact, error: [Errno 13] Permission denied: '/etc/ansible/facts.d'
目标系统是CentOS,我可以在目标系统上做无密码sudo。我什至添加了 /etc/sudoers
centos All=(ALL) NOPASSWD:ALL
所有节点以及我所在的系统 运行ning ansible。
在我 运行 ansible 系统中,我尝试以 sudo 和 root 身份执行,但结果相同。
我不确定它在哪里面临权限被拒绝,我的意思是在主机或目标系统上。
Ansible 主机:
[OSEv3:children"]
masters
nodes
[OSEv3:vars]
ansible_ssh_user=centos
ansible_sudo=true
#ansible_ssh_user=root
product_type=openshift
deployment_type=origin
[masters]
192.168.144.132 openshift_public_hostname=master.novalocal openshift_ip=10.0.1.163 openshift_public_ip=192.168.144.132
[nodes]
192.168.144.128 openshift_public_hostname=node1.novalocal openshift_ip=10.0.1.164 openshift_public_ip=192.168.144.128 openshift_node_labels="{'region': 'primary', 'zone': 'east'}"
192.168.144.129 openshift_public_hostname=node2.novalocal openshift_ip=10.0.1.165 openshift_public_ip=192.168.144.129 openshift_node_labels="{'region': 'primary', 'zone': 'west'}"
Ansible.cfg
[defaults]
hostfile = ansible_hosts
remote_user = centos
host_key_checking = False
日志如下:
TASK: [openshift_facts | Ensure PyYaml is installed] **************************
ok: [192.168.144.132] => (item=PyYAML)
TASK: [openshift_facts | Gather Cluster facts] ********************************
failed: [192.168.144.132] => {"failed": true, "parsed": false}
Traceback (most recent call last):
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 6355, in <module>
main()
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 1222, in main
openshift_facts = OpenShiftFacts(role, fact_file, local_facts, additive_facts_to_overwrite)
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 999, in __init__
self.facts = self.generate_facts(local_facts, additive_facts_to_overwrite)
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 1013, in generate_facts
local_facts = self.init_local_facts(local_facts, additive_facts_to_overwrite)
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 1194, in init_local_facts
save_local_facts(self.filename, new_local_facts)
File "/home/centos/.ansible/tmp/ansible-tmp-1449035570.03-273189812167365/openshift_facts", line 924, in save_local_facts
"Could not create fact file: %s, error: %s" % (filename, ex)
__main__.OpenShiftFactsFileWriteError: Could not create fact file: /etc/ansible/facts.d/openshift.fact, error: [Errno 13] Permission denied: '/etc/ansible'
OpenSSH_6.6.1, OpenSSL 1.0.1f 6 Jan 2014
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug1: auto-mux: Trying existing master
debug1: mux_client_request_session: master session id: 2
Shared connection to 192.168.144.132 closed.
FATAL: all hosts have already failed -- aborting
PLAY RECAP ********************************************************************
to retry, use: --limit @/root/config.retry
192.168.144.132 : ok=6 changed=0 unreachable=0 failed=1
localhost : ok=7 changed=0 unreachable=0 failed=0
我之前没有使用ansible的经验,所以我无法调试更多。
这个解决方案似乎很简单。我在 google ansible 组中找到了它。
只需添加
sudo = true
sudo_user = root
在 ansible.cfg 文件中。
至少这个错误消失了,但我遇到了新的错误。
编辑 正如下面评论中所建议的,sudo_user 必须是 root,因此相应地更改了答案。