본문 바로가기
인프라/앤서블(Ansible)

ansible "basic: the specified credentials were rejected by the server"

by IT맥구리나스 2022. 5. 25.

문제점

- ansible을 이용하여 windows서버에 명령을 수행하면 아래와 같은 에러가 발생함.

 

x.x.x.x | UNREACHABLE! => {
    "changed": false, 
    "msg": "basic: the specified credentials were rejected by the server", 
    "unreachable": true
}

 

해결방법

해당 윈도우 서버에 파워쉘로 아래 명령어 수행

Set-Item -Force WSMan:\localhost\Client\Allowunencrypted $True
Set-Item -Force WSMan:\localhost\Service\Allowunencrypted $True
Set-Item -Force WSMan:\localhost\Service\auth\Basic $True
반응형

댓글