일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- linux
- container
- java
- Strimzi
- 초간단파이썬
- 쿠버네티스
- DOIK
- docker
- ioredirection
- httpd실행
- Kubernetes
- aws #engineer
- 컨테이너
- 도커
- RSS
- k8s
- nginx
- python
- Engineer
- bash
- multivm
- devops #jenkins
- namespace
- Vagrant
- variable
- springboot
- devops #engineer
- WEB
- 파이썬
- mongodb operator
- Today
- Total
목록Cloud Infra/Linux (6)
샤인의 IT (막 적는) 메모장
Process #top - 동작중인 프로세스 및 리소스 확인 [root@localhost yum.repos.d]# top top - 14:59:40 up 3:03, 1 user, load average: 0.00, 0.01, 0.05 #프로세스 정보 Tasks: 120 total, 1 running, 119 sleeping, 0 stopped, 0 zombie #CPU 정보 %Cpu(s): 0.0 us, 0.2 sy, 0.0 ni, 99.7 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st #메모리 정보 KiB Mem : 498508 total, 111632 free, 119004 used, 267872 buff/cache KiB Swap: 1048572 total, 1047028 free,..
Redhat 리눅스 계열 기준!(CentOS 실습) Package #RPM [root@localhost sudoers.d]# curl https://rpmfind.net/linux/centos/7.9.2009/os/x86_64/Packages/tree-1.6.0-10.el7.x86_64.rpm -o tree-1.6.0-10.el7.x86_64.rpm % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 47508 100 47508 0 0 19180 0 0:00:02 0:00:02 --:--:-- 19179 [root@localhost ~]# rpm -ivh tree-1.6...
User & Group User와 Group은 파일과 리소스를 제어하기 위해 사용된다. 유저명,UID는 /etc/passwd Password는 /etc/shadow에 암호화 형태로 저장됨 유저 Type 예) root 0 0 /root /bin/bash regular 1000~60000 1000~60000 /home/username /bin/bash service ftp,ssh.. 1~999 1~999 /var/ftp etc.. /sbin/nologin #유저 확인 [root@localhost ~]# cat /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin daemon:x:2:2:daemon:/sbin:/sbin/nol..
File Type 기본 파일 - 디렉토리 d 링크 l special file c socket s pipe p #디렉토리, touch 파일, text 파일 [root@localhost filetype]# touch my-file [root@localhost filetype]# file my-file my-file: empty [root@localhost filetype]# ls -l total 0 drwxr-xr-x. 2 root root 6 Jan 14 13:05 my-dir -rw-r--r--. 1 root root 0 Jan 14 13:05 my-file [root@localhost bin]# cd /usr/bin && file yum yum: Python script, ASCII text execu..
기본 개념 GNU 프로젝트의 일환 누구나 사용할 수 있는 오픈소스 ubuntu, centos, opensuse, debian 등등 여러가지 리눅스 존재 패키지 .deb .rpm 디렉토리 홈디렉토리 /root /home 유저 명령어 /bin /usr/bin /usr/local/bin 시스템 명령어 /sbin, /usr/sbin 마운트 /media, /mnt 설정정보 /etc 임시파일 /tmp 커널 및 부트로더 /boot 서버 데이터 /var /srv 시스템 정보 /proc, /sys 라이브러리 /lib, /usr/lib 기본 명령어 #디렉토리 확인 [vagrant@localhost ~]$ ls -al total 20 drwx------. 4 vagrant vagrant 132 Jan 14 10:54 . d..
현재 나오는 CentOS 8 버전은 12월 31일 부로 지원이 종료 된다. 여기서부터 시작되는 Rocky Linux는 CentOS를 대체하기 위하여 시작된 리눅스 프로젝트이다. 엔터프라이즈급 리눅스와 100% 동일하게 누구나 무료로 사용할 수 있도록 현재 진행하고 있는데 엔지니어 입장에서는 정말 잘됬으면 좋겠다.. 설치 다운로드 접속한 후 x86_64와 arm64 아키텍처중 선택하여 다운로드한다. 현재는 Pre-release / test 버전으로만 지원한다. VM 생성 테스트 환경으로 진행하기 때문에 VirtualBox에서 설치를 진행한다. 2vCPU 4G MemoryVM을 생성한 후 해당 ISO 파일 지정한다. 설치 진행은 기존 CentOS와 비슷하다. 여러 옵션이 있지만 빨간 박스에 대한 내용을 필수..