- 호스트 계정 -
ubuntu 기본 계정에 비밀번호를 설정해준다. sudo passwd [user이름]
sudo vim /etc/ssh/sshd_config 으로 들어가 아래와 같이 내용을 변경해준다
PermitRootLogin prohibit-password ==> PermitRootLogin yes
PasswordAuthentication no ==> PasswordAuthentication yes
sudo service ssh restart 명령어를 통해 ssh를 재시작시켜준다
- ansible 계정 -
sudo vim /etc/ansible/hosts 에 IP를 추가해준다 ([host]는 host라는 그룹을 만들어준다는 의미)
앤서블 설치를 해준다
sudo apt update
sudo apt install ansible
ssh-keygen으로 키를 생성해준다
ssh-copy-id 유저이름@ip로 키를 추가해준다
ansible -m ping all으로 연동확인하기
반응형
'DevOps > Ansible' 카테고리의 다른 글
[Ubuntu] mongoDB start/stop Playbook (0) | 2022.01.18 |
---|---|
[Ubuntu] playbook 만들기 - update, reboot, stop (0) | 2022.01.11 |
[Ubuntu] MongoDB 설치하기 (0) | 2022.01.05 |
[Ubuntu] ansible 설치하고 연결하기 (0) | 2022.01.03 |
[aws linux2] Playbook 만들기 - 파일 복사하기 (0) | 2021.12.27 |
댓글