일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- log
- 빅데이터
- Chrome
- zabbix
- centos 7.5
- Audit Log
- 파이썬
- rsyslog
- 크롬
- RHEL
- 서울시민카드
- Kubernetes
- GPU
- Elk
- GNOME
- CentOS
- Elasticsearch
- Python
- docker
- Shell
- Linux
- audit
- bash
- K8S
- PostgreSQL
- yum
- JSON
- 디렉토리
- syslog
- C
- Today
- Total
목록업무 (176)
Sysops Notepad
Centos 7.5 기준 grafana server install 빅데이터 가시화를 위한 그라파나 서버 구축하기1. vi /etc/yum.repos.d/grafana.repo // 아래 내용 붙여 넣기[grafana]name=grafanabaseurl=https://packagecloud.io/grafana/stable/el/7/$basearchrepo_gpgcheck=1enabled=1gpgcheck=1gpgkey=https://packagecloud.io/gpg.key https://grafanarel.s3.amazonaws.com/RPM-GPG-KEY-grafanasslverify=1sslcacert=/etc/pki/tls/certs/ca-bundle.crt 2. yum install grafana..
s3 레포지터리 빅데이터 분석을 위한 엘라스틱서치 s3 플러그인 설치하기 ( centos 7.5에 설치 ) # cd /usr/share/Elasticsearch/bin/ # Elasticsearch-plugin install repository-s3 # Elasticsearch-plugin remove repository-s3
!#/bin/bash if [ ! -d 디렉토리명 ] ; thenMkdir 디렉토리명fi
아래 명령어로 설치가능한 GUI 확인# yum grouplist GUI 확인후 설치# yum groupinstall "KDE Plasma Workspaces"or # yum groupinstall "GNOME Desktop" 런레별 변경 및 리부팅# vi /etc/inittab...id:3:initdefault 3을 5로 변경 # reboot 끝
Centos or Redhat bash 반복문 사용하기 while true; do ; sleep 1; done
빅데이터 분석등을 위하여 가짜 데이터 or 랜덤 데이터의 수요가 많이 지고 있는데 딱 좋은 사이트를 찾았습니다!https://mockaroo.com/위 사이트에서 원하는 필드명 , 타입 , 블랭크 퍼센트등을 정의하여 excel , csv , json , sql , xml 등 원하는 형태의 파일을 저장하시면 됩니다~
Centos or Redhat 에서 특정 패키지만 제외하고 업데이트 하기 # Yum update --exclude=패키지명
가끔 리눅스에서 패키지를 잘 못 설치해서 설치된 패키지를 삭제해야될 경우가 있는데요아래와 같이 하면 해결됩니다. 1. 원하는 패키지만 삭제하기# yum remove package_name 2. dependencies가 있는 전체 패키지 삭제하기# yum install yum-plugin-remove-with-leaves# yum remove package_name --remove-leaves 끝 !
작업환경 Centos 7.5 REST API 서버 구축하기https://junebuug.github.io/django-rest-framework01/https://junebuug.github.io/django-rest-framework02/ python & Django 참고 자료https://tutorial.djangogirls.org/ko/django_start_project/https://docs.djangoproject.com/en/1.11/ref/models/fields/#field-typeshttps://docs.djangoproject.com/ko/2.0/intro/tutorial01/http://www.django-rest-framework.org/tutorial/3-class-based-v..
1. python 3.x 설치yum install -y https://centos7.iuscommunity.org/ius-release.rpm yum install -y python36u python36u-libs python36u-devel python36u-pip python3.6 -V 2. python 3.x virtualenv 설정 python3.6 -m venv venv . venv/bin/activate pip install [package_name]