我正在关注this blog使用ansible在OpenStack上安装OpenShift Origin V3。但是我收到了错误
"无法创建事实档案:%s,错误:%s" %(文件名,ex) main .OpenShiftFactsFileWriteError:无法创建事实文件:/etc/ansible/facts.d/openshift.fact,错误:[Errno 13]权限 否认:' /etc/ansible/facts.d'
目标系统是CentOS,我可以在目标系统上执行无密码sudo。我甚至添加了/etc/sudoers
centos All =(ALL)NOPASSWD:ALL
到所有节点,也在我运行ansible的系统上。
从我运行ansible的系统中,我尝试以root身份执行sudo,但结果相同。
我不确定它面临的权限被拒绝,我的意思是在主机或目标系统上。
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的经验,因此我无法进行更多调试。
答案 0 :(得分:4)
解决方案对此非常微不足道。我在ansible的谷歌小组中找到了它。
只需要添加
sudo = true
sudo_user = root
在ansible.cfg文件中。
至少这个错误消失但我遇到了新的错误。
修改强> 正如下面的评论所示,sudo_user必须是root,因此,相应地更改了anser。