분류 전체보기 172

shell 명령어

쉘 스크립트 확장자는 sh 사용 #!/bin/bash // 쉘 스크립트 사용을 알림 쉘 스크립트 실행 2가지 - sh명령어 사용 #sh my.sh - chmod명령어 사용 #chmod +x my.sh #./my.sh 변수 [root@test1 stest]# cat myshell.sh #!/bin/bash #변수 language="korean" echo "I can speak $language" [root@test1 stest]# ./myshell.sh I can speak korean 변수선언 - 폴더생성 [root@test1 stest]# ls -als total 8 0 drwxrwxr-x. 2 team01 team01 24 Jul 26 19:43 . 4 drwx------. 18 team01 team..

shell_script 2021.07.26

ansible 설치 및 ansible로 nginx 설치

파이썬 버전 확인 [root@master ~]# python --version 외부 패키지 설치 [root@master ~]# yum install -y epel-release 패키지 업데이트 [root@master ~]# yum repolist 앤서블 설치 [root@master ~]# yum install -y ansible 앤서블 버전확인 [root@master ~]# ansible --version ansible 2.9.21 ... 생략 worker node 접속확인 [root@master ~]# ssh root@192.168.200.151 ... root@192.168.200.151's password: Last login: Mon May 31 00:28:51 2021 [root@answorke..

linux 2021.05.31

git - centos 설치

git 설치 [root@master ~]# yum install git readme 파일 생성하기 [root@master ~]# echo "#test" >> README.md 깃 초기화 하면 파일생성 [root@master ~]# git init Initialized empty Git repository in /root/.git/ github.com에서 repository 만들기(아래 사진 참조) [root@master ~]# git add README.md [root@master ~]# git commit -m "Test GitHub" *** Please tell me who you are. Run git config --global user.email "you@example.com" git confi..

Programming 2021.05.22

kubernetes - control node에 pod 띄우기

기본적으로 control 노드에는 파드를 띄울 수 없음 예제 kind: Deployment apiVersion: apps/v1 metadata: name: nginx-deployment spec: replicas: 3 selector: matchLabels: app: nginx template: metadata: labels: app: nginx spec: containers: - name: nginx image: nginx ports: - name: http containerPort: 80 --- apiVersion: v1 kind: Service metadata: name: node-service spec: type: NodePort selector: app: nginx ports: - protoco..

카테고리 없음 2021.05.22

opnsense 설치

설치 파일 opnsense.aivian.org/releases/mirror/ file : OPNsense-21.1-OpenSSL-dvd-amd64.iso.bz2 설치사양 cpu: 2.0Ghz 이상 멀티코어CPU ram: 4G hdd: 10G network : 2 ea 기타 - freeBSD 12.0 이상 선택 설치 power-on부팅 id/pw : installer/opnsense 엔터 엔터 guided installation 선택 엔터 내 경우는 gpt mode로 사용 - 엔터 설치 진행 root 암호입력 reboot 팅 root접속 ip변경 -2번 (내 네트워크에 맞게 변경하기) 웹접속 웹브라우저 : http://x.x.x.x root로 접속 next 설치 첫단계: 호스트이름, 도메인 이름, dns서..

방화벽 2021.04.02