Linux Log
Linux Log Files Log File Types Linux log files are located in the /var/log directory and are categorized into four main types: Application Logs Event Logs Service Logs System Logs /var/...
Linux Log Files Log File Types Linux log files are located in the /var/log directory and are categorized into four main types: Application Logs Event Logs Service Logs System Logs /var/...
CentOS7 배포 방법 Visual Studio를 통해서 디버그 모드로 아무 이상이 없는지 먼저 확인부터 하고 배포를 시작합니다. 아무 이상이 없을경우 window power shell을 접속하여 본인이 배포하시기 원하는 폴더로 접근합니다. 폴더에 접근 후 dotnet publish 라는 명령어를 실행시킵니다. 그러면 publish된 ...
파일 생성 및 실행 권한 부여 $ touch shell_script_practice.sh // 파일 생성 $ vim shell_script_practice.sh // 쉘 스크립트 파일 편집기로 열기 $ chmod +x shell_script_practice.sh // 실행 권한 부여 기본 문법 스크립트 상단에 #I/bin/bash를 추가하고...
정렬하지 않고 유니크한 부분만 출력하기 $ awk '!x[$0]++ {print $0}' my_file.txt $ cat my_file.txt | awk '!x[$0]++' 정렬하면서 유니크한 부분 출력하기 $ cat my_file.txt | sort -u cat * | grep 의 환상 조합 $ grep -r -H "찾고자 하는 string"...
쉘 커맨드 창에 보이는 기호 분석 guest@linux:~$(#) $: normal user #: system administrator (root) guest - username linux - machine hostname ~ - current working directory ...
정규식 표현 설명 ^x 문자열이 x로 시작합니다. x$ 문자열이 x로 끝납니다. . 임의의 한 문자를 표현합니다. x* x가 0번 이상 반복합니다. ...
네트워크 설정 파일 열기 ifconfig를 통해 연결된 이더넷의 이름이 뭔지 확인합니다. vim /etc/sysconfig/network-scripts/ifcfg-[이더넷 이름] 그러면 다음과 같은 설정값들이 보일 것입니다. TYPE="Ethernet" PROXY_METHOD="none" BROWSER_ONLY="no" BOOTPR...
쉘 커맨드 창에 보이는 기호 분석 guest@linux:~$(#) $: normal user #: system administrator (root) guest - username linux - machine hostname ~ - current working directory ...
리눅스를 사용하다보면 무슨 계열별로 설치하는 방식이 다르다면서 여러가지 계열이 나오는데 한 번 정리해보았다. 내가 자주 접하는 리눅스 종류 Debian -> Ubuntu -> Linux Mint Debian -> Kali Red Hat Red Hat -> Fedora Red Hat Enterprise Lin...
An Introduction to InfluxDB for Developers: What is a Time-Series Database? When developing and operating software, we encounter a multitude of data. From user logs and Application Performance Met...