일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 서울시민카드
- log
- Python
- Chrome
- yum
- zabbix
- JSON
- C
- Elasticsearch
- Audit Log
- K8S
- docker
- Shell
- Kubernetes
- 파이썬
- PostgreSQL
- syslog
- audit
- Elk
- GPU
- CentOS
- 디렉토리
- GNOME
- centos 7.5
- rsyslog
- 크롬
- 빅데이터
- bash
- RHEL
- Today
- Total
목록업무/etc (92)
Sysops Notepad
리눅스에서 특정 기간 파일 찾아 backup/ remove 하는 script 입니다. 다만 꼭 테스트 후에 사용하세요~ #!/bin/csh # to remove files more than 30 days from directory /delete_tmp_dir #find /delete_tmp_dir -mtime +30 -print -exec rm -f {} \; #find /delete_tmp_dir -type d -print -exec rmdir {} \; # /delete_tmp_dir에서 10일 이상된 파일을 삭제 find /delete_tmp_dir -mtime +10 -print -exec rm -f {} \; # /delete_tmp_dir에서 31일 이상된 파일을 삭제 find /delete_..
test.txt파일을 읽고 나서 1번째 라인 표시하고, 공백, 1번째라인에_delete 붙여서 출력 # cat test.txt | awk {'print $1 " " $1"_delete"'} file_name_change.sh 파일을 읽고 ls -l 표시, 공백, 3번째라인 출력하여 # cat file_name_change.sh | awk {'print "ls -l" " " $3'} > change_file_check.sh nas_change_file_check.sh 파일에 내용 넣기 # cat file_name_change.sh | awk {'print "echo 0" " > " $3 '}
저는 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
# yum install libjpeg-turbo-utils # jpegtran -copy none -optimize crop.jpg image.jpg
보통 습관처럼 서버 들어가서 export TMOUT=0 을 치고 작업을 시작하지만 그러면 양심에 찔리니까 미사용할때는 터미널을 종료하는 습관을 만듭시다 ㅎㅎ echo "TMOUT=300 readonly TMOUT export TMOUT" >> /root/.bashrc
2021년 3월 기준 검색어 점유율 상위 11위로 빠르게 성장중인 Go 언어 설치 하는 방법입니다. 저는 Centos 7.6 버전에서 설치하여 진행했습니다. # wget https://dl.google.com/go/go1.14.15.linux-amd64.tar.gz # tar -C /home/ -xzf go1.14.15.linux-amd64.tar.gz # vi /root/.bash_profile export GOBIN=/home/go/bin export GOROOT=/home/go export PATH=$PATH:/home/go/bin # go version go version go1.14.15 linux/amd64
# yum install -y epel-release # yum repolist # yum install nginx # systemctl enable nginx # systemctl status nginx # systemctl start nginx # yum install certbot python2-certbot-nginx # certbot --nginx # vim /etc/nginx/nginx.conf location / { proxy_pass "http://127.0.0.1:8081"; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forw..
# hostnamectl set-hostname nexus # yum update -y # yum -y install java-1.8.0-openjdk java-1.8.0-openjdk-devel # java -version # cd /opt # wget https://download.sonatype.com/nexus/3/latest-unix.tar.gz # tar -xvzf latest-unix.tar.gz # mv nexus-3.20.1-01 nexus # mv sonatype-work nexusdata # useradd --system --no-create-home nexus # chown -R nexus:nexus /opt/nexuschown -R nexus:nexus /opt/nexusdata ..
보통은 cp 혹은 rsync를 통해 많이 사용하지만 아래 방법으로도 파일 복사가 가능합니다. (cd 원본경로; tar cvf - .) | (cd 대상경로; tar xfvp -)
1. python에 접속하여 pycurl 을 import 하여 에러메시지 확인 # python3 >>> import pycurl Traceback (most recent call last): File "", line 1, in ImportError: pycurl: libcurl link-time ssl backend (nss) is different from compile-time ssl backend (none/other) 2. 위 에러 발생시 제거 후 재설치 해준다. # pip3 uninstall pycurl # export PYCURL_SSL_LIBRARY=nss # pip3 install --compile --install-option="--with-nss" --no-cache-dir pycurl..