終於到了須要上Ansible的時候了,以前因爲需求不強烈沒有作,從今天起陸續記錄學習。web
ansible <group_name> list
ansible <host_name/group_name> -m command -a 'free -h'
ansible <host_name/group_name> -m shell -a 'df -h'
執行上述命令,是檢測被主機的存活狀態時,出現以下報錯信息:shell
"msg": "Failed to connect to the host via ssh: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password)."
執行下面的命令顯示更詳細 的信息api
ansible -m ping all -vvv
結果中有以下ssh
<websrv.internal.org> ESTABLISH SSH CONNECTION FOR USER: None
ansible鏈接被管主機(此處是websrv.internal.org)沒有使用明確的用戶名。所以,在ansible的配置文件/etc/ansible/hosts中修改以下:ide
websrv.internal.org ansible_user=test
此處的'test‘是websrv.internal.org主機上的可登陸用戶,若是配置了公鑰,則能夠成功完成上述主機探測命令。回顯以下:學習
websrv.internal.org | SUCCESS => { "changed": false, "ping": "pong" }