0

我正在关注this blog以便在OpenStack上安装OpenShift Origin V3。但我得到错误Ansible:无法创建/etc/ansible/facts.d/openshift.fact,权限被拒绝

"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

添加到所有节点,也从我的计算机运行ansible系统。

从系统运行ansible,我尝试作为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没有现成的经验,因此我无法调试mor即

+0

该错误表明openshift_facts模块无法写入远程主机上的/etc/ansible/facts.d目录。 通常,我只在没有使用sudo的情况下以非root用户身份运行时才看到此错误,但是从您提供的库存片段中看到此错误,但在此情况下似乎不是这样。 如果你手动ssh到192.168.144.132作为centos用户并且试图运行以下命令:'sudo touch/etc/ansible/facts.d/openshift.fact'。如果失败了,那么无论什么原因导致root无法解决/etc/ansible/facts.d需要在继续之前解决。 – detiber

+0

@detiber'sudo touch /etc/ansible/ facts.d/openshift.fact'给出**没有这样的文件或目录**错误,可能是因为facts.d文件夹不存在。但是我可以在'/ etc/ansible'文件夹中创建一个随机文件。 – user3275095

+0

您使用的是什么版本的软件? – detiber

回答

3

该解决方案对此似乎非常微不足道。我发现它在谷歌组合上。

只需要在ansible.cfg文件中添加

sudo = true 
sudo_user = root 

至少这个错误消失了,但是我遇到了新的错误。

EDIT 如下面意见提出,sudo_user必须是根,因此,相应地改变了雁。

+0

设置sudo_user似乎不正确,那应该是用户的行为,在这种情况下*应该*是root的默认值。 – detiber

+0

你的意思是不应该添加它,默认情况下它需要真正的根值? – user3275095

+0

sudo = true应该不是真的需要,因为您的库存正在OSEv3组上设置ansible_sudo,但它在ansible.cfg文件中没有任何伤害。 – detiber