일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C
- docker
- yum
- 빅데이터
- Shell
- CentOS
- centos 7.5
- Chrome
- zabbix
- Python
- Elk
- Kubernetes
- Linux
- Audit Log
- JSON
- audit
- RHEL
- rsyslog
- 서울시민카드
- 디렉토리
- bash
- log
- 크롬
- syslog
- GPU
- 파이썬
- Elasticsearch
- GNOME
- K8S
- PostgreSQL
- Today
- Total
목록CentOS (26)
Sysops Notepad
설치 환경 - CentOS 8 - CentOS 7 - CentOS 6 1. SELinux 설정 확인 [root@sysops]# sestatus [root@sysops]# sestatus | grep 'SELinux status\|Current mode' SELinux status: enabled Current mode: enforcing 2. 일시적으로 비활성화시키기 [root@sysops]# setenforce 0 [root@sysops]# sestatus | grep 'SELinux status\|Current mode' SELinux status: enabled Current mode: permissive 3. 영구적으로 비활성화시키기 [root@sysops]# vim /etc/selinux/con..
설치환경 : - Centos 7 설치방법 [root@sysops]# yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm [root@sysops]# yum install -y postgresql13-server [root@sysops]# /usr/pgsql-13/bin/postgresql-13-setup initdb [root@sysops]# systemctl enable postgresql-13 사용방법 [root@sysops]# sudo -iu postgres psql # CREATE DATABASE test; # \c test # CREATE T..
리눅스에서 반복문 돌릴 때 for문도 있지만 seq를 사용하기도 합니다. 1. 기본 사용법 seq 10 => 1부터 10까지 출력 seq 3 9 => 3부터 9까지 출력 seq 2 2 10 => 2부터 2씩 증가하면서 10까지 출력 seq 10 -2 4 => 10부터 2씩 감소하면서 4까지 출력 2. 출력 형식 seq -f %04g 1000 => 1부터 1000까지 출력하는데 0001, 0002 이런 식으로 4자리 까지는 0으로 채워서 출력 seq -w 1000 => 1부터 1000까지 출력하는데 0001, 0002 이런 식으로 제일 큰 수의 자리수에 맞춰 0으로 채워서 출력 seq -f %e 10 => 1부터 10까지 공학용 표기법으로 출력 seq -f %f 10 => 1부터 10까지 소수점 6자리까지..
저는 Centos 7.6 에서 설치 진행했습니다. # vi /etc/yum.repos.d/wandisco-git.repo [wandisco-git] name=Wandisco GIT Repository baseurl=http://opensource.wandisco.com/centos/7/git/$basearch/ enabled=1 gpgcheck=1 gpgkey=http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco # rpm --import http://opensource.wandisco.com/RPM-GPG-KEY-WANdisco # yum install git
Centos에서 자주 사용하는 사용자 추가 / 삭제 / 변경 방법입니다. 간단하고 자구 사용하는 명령어인데 가끔 생각이 안나곤 하죠 ㅎㅎ 1. 홈디렉토리는 /home/test , 로그인은 사용하지 않고, test 라는 계정을 생성 # useradd -d /home/test -s /sbin/nologin -r gateway-worker-app 2. 홈디렉토리는 남기고 test 계정삭제 # userdel -test 3. 홈디렉토리를 포함해서 test 계정을 삭제 # userdel -r test 4. test 사용자의 홈디렉토리 변경 # usermod -d /tmp test 5. 계정 추가 / 삭제 / 수정 여부 확인 # cat /etc/passwd | grep test
cp /usr/lib/systemd/resolv.conf /etc/resolv.conf systemctl start systemd-resolved.service resolvectl status
ulimit 이란? ulimit는 프로세스의 자원 한도를 설정하는 명령, soft한도,hard한도 두가지로 나뉨 soft : 새로운 프로그램을 생성하면 기본으로 적용되는 한도 hard : 소프트한도에서 최대로 늘릴 수 있는 한도 apache 와 같이 웹 서비스를 운영 시 동접자가 많은 경우 구동되는apache 프로세스 수와 해당 프로세스가 처리하게되는 파일 수 또한 증가 하게 됩니다. * ulimit [옵션] 값 ( Centos , RHEL 기준) -a : 모든 제한 사항을 보여줌. -c : 최대 코어 파일 사이즈 -d : 프로세스 데이터 세그먼트의 최대 크기 -f : shell에 의해 만들어질 수 있는 파일의 최대 크기 -s : 최대 스택 크기 -p : 파이프 크기 -n : 오픈 파일의 최대수 -u :..
dnsmasq는 DNS Forward / Cache / DHCP 기능 수행 Master 1. yum install dnsmasq 2. /etc/hosts 에 서비스할 로컬 domain 들을 적어줍니다.127.0.0.1 localhost192.168.0.10 master192.168.0.11 slave1192.168.0.12 slave1 3. /etc/resolv.conf 에 nameserver 를 현재 IP 로 변경nameserver 192.168.0.10 4.vi /etc/resolv.dnsmasq nameserver 8.8.8.8 # /etc/hosts 파일에 없는 dns 질의시 조회할 dns server 입력 5.vi /etc/dnsmasq.confresolv-file=/etc/resolv.dnsm..
*args- list of arguments - as positional arguments- 파라미터를 몇개를 받을지 모르는 경우 사용한다. - args 는 튜플 형태로 전달된다. -------------------------def print_param(*args): print args for p in args: print p print_param('a', 'b', 'c', 'd')#('a', 'b', 'c', 'd')#a#b#c#d------------------------- **kwargs- dictionary - whose keys become separate keyword arguments and the values become values of these arguments.- 파라미터 명을 같이..
global daemon # 백그라운드에서 동작 user haproxy group haproxy log 127.0.0.1 local0 log 127.0.0.1 local1 notice maxconn 4096 # 프로세스 별 최대 connection 갯수 ssl-default-bind-options no-sslv3 # Bind SSL 프로토콜 정의 ssl-default-bind-ciphers ECDHE-RSA-AES128-GCM-SHA256:... # Bind SSL 사용 알고리즘 목록 정의 ssl-default-server-options no-sslv3 # Server SSL 프로토콜 정의 ssl-default-server-ciphers ECDHE-RSA-AES128-GCM-SHA256:... # Ser..