일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- @Transactional Propagation
- intellij 즐겨찾기
- @TransactionalEventListener
- HandlerMethodArgumentResolver
- aws
- 백명석님
- 자바 ORM 표준 JPA 프로그래밍 정리
- #docker compose
- intellij favorites
- JPA
- ksqldb
- 자바 ORM 표준 JPA 프로그래밍
- 원격 브랜 삭제
- git
- 리팩토링 2판
- findTopBy
- Linux
- java
- ksql
- 마이크로 서비스
- intellij 핵심 단축키
- 친절한 SQL 튜닝
- javascript case
- Spring Cloud Netflix
- IntelliJ
- Stream
- multipart테스트
- CompletableFuture
- vue.js
- 리눅스
- Today
- Total
목록프로그래밍/Linux (11)
시그마 삽질==six 시그마
터미널에서 1. 도메인 조회 dig [@server] [domain] [ query type] server : 네임 서버를 넣어주면 되는데 안 넣으면 etc/resolv.conf 에 있는 걸 바라본다 The name or IP address of the name server to query. If no server argument is provided, the dig command consults the /etc/resolv.conf file and queries the name servers listed there. () domain: 찾고자하는 리소스 네임 The name of the resource record that is to be looked up. type: 조회할 레코드 타입을 넣어준다. ..
lsof -i tcp:포트번호 kill -9 해당pid번호 별첨: ps -ef 해당pid번호 몬지 확인가능
You can use ctrl+U to delete before Cursor You can use ctrl+K to delete after Cursor You can use ctrl+W to delete just a word. You can also use ctrl+C to cancel. ctrl+ U 라인삭제 You can also use ctrl+A to go to the beginning of the line. ctrl+ a 맨 앞으로 You can also use ctrl+E to go to the end of the line. ctrl +e 맨뒤로 ctrl+d 뒤 글자 삭제 alias ll = 'ls -hal' 지정후 편하게 ll로 리스트 볼 수 있음. source : https://suppor..
A shell script is a computer program designed to be run by the Unix shell, a command-line interpreter.[1] The various dialects of shell scripts are considered to be scripting languages. Typical operations performed by shell scripts include file manipulation, program execution, and printing text. 디티솔루션의 우재남 연구소장님의 '이것이 리눅스다' 책을 구입하시길 추천드립니다. 책 구입을 원하시는분은 요기를 클릭하시면 됩니다. ※ 우재남 연구소장님의 무료 동영상 강의 http..
예전에 크론탭을 사용해서 스케줄링을 한적이 있었다. 요즘은 Cloudwatch에 lambda를 연결해서 사용하고 있다. 크론탭에 대해 간략히 살펴보면 1. crontab 정의 소프트웨어 환경을 설정하고 유지 관리하는 사용자는 cron을 사용하여 작업 (명령 또는 쉘 스크립트)이 일정 시간, 날짜 또는 간격으로 주기적으로 실행되도록 예약한다. The software utility cron is a time-based job scheduler in Unix-like computer operating systems. Users that set up and maintain software environments use cron to schedule jobs (commands or shell scripts) to..
1. RPM RPM Package Manager (RPM) (originally Red Hat Package Manager; now a recursive acronym) is a free and open-source package management system.[5] The name RPM refers to .rpm file format and the package manager program itself. RPM was intended primarily for Linux distributions; the file format is the baseline package format of the Linux Standard Base. From Wikipedia, the free encyclopedia 레드..
-디스크의 남은 용량을 확인 df (abbreviation for disk free) is a standard Unix command used to display the amount of available disk space for file systems on which the invoking user has appropriate read access. - 디렉토리별 사용량을 확인 du (abbreviated from disk usage) is a standard Unix program used to estimate file space usage—space used under a particular directory or files on a file system. wikipedia 지금은 도커를 통해 C..
1. 폴더 찾기 1) 전체 폴더에서 찾기 find / -name 폴더명 -type d 2)현재폴더(하위 포함) 에서 찾기 find ./ -name 폴더명 -type d 2. 파일 찾기(ls) 1) ls로 찾기 ls -Rhal | grep '.*[.]html' catalina.out 카탈리나 빈파일로 만들기 3. 내부 내용 찾기 1)파일 내부에 문자열을 검색함 grep 'meta' ./*.html 내부에 meta라는 문자열이 들어있는 html파일 찾음 grep -rn 'meta' ./* 하위 모든 디렉토리 파일대상으로 해당 문자열 찾음 -r은 하위 도 포함 -n 라인넘버 표시 tail -1000 /usr/local/tomcat/logs/catalina.out | grep 'error' 2) 문자와 문자 사..