일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- RHEL
- 서울시민카드
- yum
- JSON
- audit
- centos 7.5
- Elasticsearch
- PostgreSQL
- zabbix
- bash
- K8S
- CentOS
- Python
- docker
- 디렉토리
- 파이썬
- 크롬
- rsyslog
- Chrome
- GPU
- 빅데이터
- Linux
- C
- GNOME
- syslog
- Shell
- Elk
- log
- Kubernetes
- Audit Log
- Today
- Total
목록업무 (176)
Sysops Notepad
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
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 -)
전체 서비스 목록 # systemctl list-unit-files disabled 서비스 목록 # systemctl list-unit-files | grep disabled active 서비스 목록 # systemctl list-units --state active failed 서비스 목록 # systemctl list-units --state failed
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..
Centos에 java 8 설치하기 # yum install java-1.8.0-openjdk java-1.8.0-openjdk-devel # which javac /usr/bin/javac # javac -version javac 1.8.0_151 # readlink -f /usr/bin/javac /usr/lib/jvm/java-1.8.0-openjdk-1.8.0.151-1.b12.35.amzn1.x86_64/bin/javac 참고: readlink -f = 심볼릭 링크의 원본을 찾아주는 명령어
# lsmod 현재 설치되어 있는 모듈들의 목록을 볼 수 있다. # rmmod 모듈을 설치하고 삭제하는 명령어이다. # modinfo 모듈의 정보를 조회한다. # modprobe modules.dep파일을 참고하여 추가 혹은 제거 주요 옵션 -l : 모듈 목록 출력 -r : 모듈을 제거 의존성 있는 모듈이 사용되고 있지 않다면 함께 제거 -c : 모듈 관련 환경 설정 파일의 내용을 전부 출력 [Linux] 리눅스 모듈(module) 관리
yum을 통해 설치된 패키지에 대한 의존성 패키지를 확인하는 방법 입니다. # yum deplist [package] # yum deplist curl Finding dependencies: Setting up repositories updates-released 100% |=========================| 951 B 00:00 extras 100% |=========================| 1.1 kB 00:00 base 100% |=========================| 1.1 kB 00:00 Reading repository metadata in from local files package: curl.i386 7.13.1-3 dependency: libdl.so.2 pr..