Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- subporcess path
- snmp test
- telegraf
- 정규식 활용
- gcc regex
- c++ 정규식
- g++ 업데이트
- CentOS7
- c3 second
- c3 초
- 정규식 컴파일
- InfluxDB
- c3 step graph
- snmp
- c3 축 없애기
- c3 축 가리기
- 정규식 문자열 출력
- gcc 업데이트
- centos pyhon 설치
- grafana dashboard
- 백준
- python subprocess
- influxdb 설치
- 1697
- python os
- selinux port 등록
- regex_search
- linux시간으로 변경
- semanage
- python popen
Archives
- Today
- Total
리셋 되지 말자
원격실습 환경 구성 본문
환경 구성
컨트롤 대상이 되는 리눅스 서버들에 VirtualBox, vagrant, sshpass를 설치한다. 그리고 Django가 설치되는 Controller 서버에는 파이썬을 설치한다.
Ubuntu
1. virtualbox 설치
sudo apt update -y
sudo apt upgrade -y
sudo sh -c 'echo "deb [arch=amd64] https://download.virtualbox.org/virtualbox/debian $(lsb_release -sc) contrib" >> /etc/apt/sources.list.d/virtualbox.list'
wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add -
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -
sudo apt update -y
sudo apt install -y virtualbox-6.1
2. vagrant 설치(공식페이지링크)
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -
sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"
sudo apt-get update -y && sudo apt-get install -y vagrant
3. 파이썬 3.9 설치
sudo apt update
sudo apt install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt install python3.9
Centos 7
1. virtualbox 설치(출처)
yum update -y
yum install –y patch gcc kernel-headers kernel-devel make perl wget
reboot
wget http://download.virtualbox.org/virtualbox/rpm/el/virtualbox.repo -P /etc/yum.repos.d
yum list VirtualBox*
yum install -y VirtualBox-6.1
systemctl status vboxdrv
2. vagrant 설치
sudo yum install -y yum-utils
sudo yum-config-manager --add-repo https://rpm.releases.hashicorp.com/RHEL/hashicorp.repo
sudo yum -y install vagrant
RDB 스키마 설계
문제
'Django' 카테고리의 다른 글
Django Opentelemetry 연동 - 1 (0) | 2024.01.25 |
---|---|
나중에 공부할 내용(ORM) (0) | 2022.04.28 |
ORM (0) | 2022.04.16 |
CSRF 토큰 오류 (0) | 2021.12.21 |
celery shared_task 수집하기 (0) | 2021.10.12 |
Comments