일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Elasticsearch
- Python
- bash
- 빅데이터
- PostgreSQL
- yum
- K8S
- syslog
- Chrome
- JSON
- log
- Audit Log
- docker
- Elk
- GPU
- CentOS
- C
- Shell
- zabbix
- centos 7.5
- rsyslog
- audit
- 크롬
- GNOME
- RHEL
- Kubernetes
- 서울시민카드
- Today
- Total
목록분류 전체보기 (188)
Sysops Notepad
rancher https://rancher.com/docs/rancher/v2.x/en/installation/ha/create-nodes-lb/nginx/ docker run -d --restart=unless-stopped -p 80:80 -p 443:443 rancher/rancher # k8s master인증,권한 관리API entry point(API Server : HTTP를 통해 내부 및 외부 인터페이스를 제공합니다. 이를 통해 Pod, Service, Replication Controller 등의 설정)컨테이너 할당 스케줄링스케일링, 복제 컨트롤러 (Controller Manager : DaemonSet Controller, Replication Controller등의 개체를 모니터링하고 ..
nvidia Driver 415.18 install # yum install kernel-devel kernel-headers gcc make # lsmod | grep nouveau # vi /etc/modprobe.d/blacklist-nouveau.confblacklist nouveauoptions nouveau modeset=0 # dracut --force# reboot lspci | grep VGA # wget http://download.nvidia.com/XFree86/Linux-x86_64/415.18/NVIDIA-Linux-x86_64-415.18.run # bash NVIDIA-Linux-x86_64-390.59.run cuda 10.0 install # rpm -i cuda-repo..
테스트 환경OS : Centos 7.5 GUI version : GNOME3 1. App menu -> Search "Application Installer" -> "Let’s Go Shopping." click -> Search "Kickstart" -> install 2. vi /usr/share/system-config-kickstart/packages.py161 linerepoorder = ["rawhide","development","fedora"] -> repoorder = ["rawhide","development","fedora","base"] 로 변경 3. App menu -> Search "Kickstart" -> user setting 참고:https://linuxhint.com/in..
CAP_NET_BIND_SERVICE이 1024이하 포트(privileged ports)에 대해 권한 부여 역할 CentOS : yum install libcap pam-devel -e : effective 효력 부여-p : Permitted 허용-i : Inheritable 권한 상속 여부(execve) # setcap 'cap_net_bind_service=+ep' /usr/bin/nc (설정추가)# getcap /usr/bin/nc/usr/bin/nc = cap_net_bind_service+ep # setcap -r /usr/bin/nc (설정삭제)# getcap /usr/bin/nc su를 이용한 유저별 권한 부여vi /etc/security/capability.conf# needed to ru..
1.설치curl -sL https://asciinema.org/install | sh 2.토큰등록 (~/.asciinema/config에 통근 등록됨)asciinema auth 3.녹화 (중지 Ctrl+D)asciinema rec 참고:https://asciinema.org/
linux bash shell 에서 많이 사용 되는 echo 명령어의 상세 옵션 입니다. #!/bin/bash # -n new line 제외echo -n "1234567890" # \b backspaceecho -e "123456\b7890" # \\ backslashecho -e "123456\\7890" # \e escapeecho -e "123456\e7890" # \n new lineecho -e "123\n456\n789\n0" # \t tabecho -e "123\t456\t789\t0" # \v vertical tabecho -e "123\v456\v789\v0" # \r carriage returnecho -e "123\r4567890" # \c 이후 내용 생략, new line 포함 (s..
server,peer 둘 다 실행 yum install -y centos-release-gluster yum install glusterfs-server systemctl start glusterd systemctl enable rpcbindsystemctl start rpcbind vi /etc/hostsx.x.x.10 server.comx.x.x.20 peer.com server.com에서 실행 gluster peer probe peer.com -> peer probe: success. gluster peer status -> Number of Peers: 1 Hostname: peer.com Uuid: - State: Peer in Cluster (Connected) gluster pool list..
Centos 7 / RHEL 7 에서 반복되는 로그 제거하는 방법 해당로그는 systemd의 session_start_scope () 함수에 의해 인쇄됩니다. 이 함수는 cgroup을 만드는 데 사용되며 무시 가능합니다. # tail /var/log/message Dec 6 04:01:01 localhost systemd: Created slice user-0.slice.Dec 6 04:01:01 localhost systemd: Starting Session 63 of user root.Dec 6 04:01:01 localhost systemd: Started Session 63 of user root.Dec 6 05:01:01 localhost systemd: Created slice user-0.s..
# for user in $(cut -f1 -d: /etc/passwd); do crontab -u $user -l; done
yum install screen screen -S 세션명 : 세션 생성screen -r 세션명 : 강제로 종료된거에 다시 붙이기screen -RR Ctrl+a A : 현재 screen의 이름 설정Ctrl+a c : screen에서 새창 생성Ctrl+a k : 현재 screen 죽이기Ctrl+a d : 현재 screen detach Ctrl+a " : 리스트 보기 == screen -list Ctrl+a a : 바로 전 창으로Ctrl+a n : 다음 창으로 Ctrl+a p : 이전 창으로 Ctrl+a 0 : 0번째 창으로Ctrl+a 1 : 1번째 창으로 Ctrl+a S 화면 수평 분할Ctrl+a | 화면 수직 분할Ctrl+a tab 화면 분할 이동Ctrl+a Q 화면 분할 해제