728x90
반응형
ansible 수동 설치 방법 (2.4.4.0) - git을 활용한 방법
1. git을 통한 설치 방법
root@ubuntu:~# git clone https://github.com/ansible/ansible.git
root@ubuntu:~# cd /ansible
root@ubuntu:~# git checkout -b stable-2.4.4.0
root@ubuntu:~# git branch (git branch 정보 확인)
root@ubuntu:~# make
root@ubuntu:~# make install
root@ubuntu:~# ansible --version
2. 압축파일 다운로드를 통한 설치 방법
https://releases.ansible.com/ansible/
위 주소에서 ansible-2.4.4.0.tar.gz 파일 받아서,
필요 패키지(apt-get install python-dev libffi-deb libssl-dev libxml2-dev libxslt1-dev) 설치하고
root@ubuntu:~# make
root@ubuntu:~# make install
root@ubuntu:~# ansible --version
ansible 수동 설치 방법 (2.4.4.0) - wget을 활용한 방법
root@ubuntu:~# apt remove ansible
root@ubuntu:~# pip install setuptools
root@ubuntu:~# wget https://releases.ansible.com/ansible/ansible-2.4.4.0.tar.gz
root@ubuntu:~# tar -xvf ansible-2.4.4.0.tar.gz
root@ubuntu:~# cd ansible-2.4.4.0/
root@ubuntu:~# make
root@ubuntu:~# make install
root@ubuntu:~# cp /usr/local/bin/ansible* /usr/bin
root@ubuntu:~# ansible --version (# ansible 2.4.4.0 확인)
728x90
반응형
'IT기술 > Linux 계열' 카테고리의 다른 글
[Linux] MySQL 이중화 소개 및 사용 (1) | 2023.03.14 |
---|---|
[Linux] 리눅스 hostname 변경 (0) | 2022.07.20 |
[Linux] 리눅스 핵심 구성요소 & 기본 명령어 (0) | 2022.07.18 |
[Linux] 리눅스 네트워크 접속 사용자 종료 (0) | 2022.06.20 |
[Linux] 리눅스 분할 압축 풀기 (1) | 2022.06.13 |
[Linux] 리눅스 네트워크 드라이브 설정 (1) | 2022.03.14 |
댓글