반응형
목차
ansible의 경우 windows에서는 설치가 안되므로 WSL을 사용하여 설치하면된다.
선행 설치 환경
- python
- pip
Python 확인
python이 설치가 되어 있어야합니다.
python3 -m pip -v
설치가 안되었다면
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py --user
설치
pip install ansible
설치하고 나면 아래와 같은 경고 문구가 발생한다.
WARNING: The script ansible-community is installed in '/home/[USER]/.local/bin' which is not on PATH.
Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.
실행경로를 지정해 줘야 합니다.
아래와 같이 설정해 줍니다.
echo 'export PATH=$PATH:$HOME/.local/bin' >> ~/.bashrc
source ~/.bashrc
Ansible 확인
ansible --version
반응형
'DevOps > Ansible' 카테고리의 다른 글
Ansible study 2주차 (0) | 2024.01.15 |
---|---|
Ansible study 1주차 (0) | 2024.01.09 |
to use the 'ssh' connection type with passwords or pkcs11_provider, you must install the sshpass program 에러 (0) | 2023.09.25 |
ansible 설치 for ubuntu (0) | 2022.10.05 |
댓글