일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- java
- git
- Spring Cloud Netflix
- 백명석님
- 리눅스
- @Transactional Propagation
- @TransactionalEventListener
- 자바 ORM 표준 JPA 프로그래밍 정리
- ksql
- CompletableFuture
- Linux
- 리팩토링 2판
- aws
- IntelliJ
- ksqldb
- 자바 ORM 표준 JPA 프로그래밍
- 마이크로 서비스
- javascript case
- findTopBy
- 친절한 SQL 튜닝
- intellij 즐겨찾기
- JPA
- multipart테스트
- vue.js
- #docker compose
- HandlerMethodArgumentResolver
- Stream
- 원격 브랜 삭제
- intellij favorites
- intellij 핵심 단축키
- Today
- Total
목록Linux (5)
시그마 삽질==six 시그마
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 레드..
1. ifcfg-eth0 cat /etc/sysconfig/network-scripts/ifcfg-eth0 eth0장치에 설정된 네트워크 정보가 모두 들어 있는 파일이다. 2. network cat /etc/sysconfig/network 네트워크의 기본정보가 설정되어 있는 파일로 네트워크 사용여부가 써있다. 3. resolv.conf cat /etc/resolv.conf DNS 서버의 정보와 호스트 이름이 들어있는 파일이다 4. hosts cat /etc/hosts 현 컴퓨터의 호스트이름과 호스트이름이 들어있는 파일이다. 5. host.conf cat /etc/host.conf 도메인 요청시 검색순서 알려준다. multi 옵션은 /etc/hosts 파일에 여러 개의 IP 주소를 가질 수 있도록 허용여부..
1. SCP 정의 (위키피디아) Secure copy protocol (SCP) is a means of securely transferring computer files between a local host and a remote host or between two remote hosts. It is based on the Secure Shell (SSH) protocol 2.기본사용법 scp 1) 원격지 ->로컬 $ sudo scp -i key위치 원격지계정@원격서버주소:원격파일위치 로컬위치 key위치: 로컬에 저장된 원격지 퍼블릭 키 ~/.ssh/key.pem == /home/ec2-user/.ssh/key.pem ex) $ sudo scp -i /home/ec2-user/.ssh/key.pem e..