상황 spring rest doc이 적용된 spring boot 2.6. gradle 7버젼에서 aws codebuild 빌드단계 및 로컬빌드 중 아래와 같은 플러그인의 의존성을 가져오지 못하는 문제 발생 build.gradle 코드는 수정하지 않았음 id "org.asciidoctor.jvm.convert" version "3.3.2" // Spring REST Docs 에러 메시지 Welcome to Gradle 7.4.1! 90 91 Here are the highlights of this ***: 92 - Aggregated test and JaCoCo reports 93 - Marking additional test source directories as tests in IntelliJ 94 -..
gradle에서 asciidoctorExtensions 플러그인 설정시 기본 path는 src/docs/asciidoc로 되어있다 더보기 Methods sourceDir where the asciidoc sources are. Use either sourceDir path, setSourceDir path or sourceDir=path Type: File, but any object convertible with project.file can be passed. Default: src/docs/asciidoc. 출처: https://asciidoctor.github.io/asciidoctor-gradle-plugin/maintenance-1.5/
1. mysql 백업 스크립트 작성 # mkdir /backup 백업된 sql을 저장할 디렉터리를 만든다 # chmod 755 backup 755권한준다 # vi /root/backup.sh # vi /root/backup.sh 백업 스크립트를 작성한다 ---------- backup.sh ------------ #!/bin/sh DATE=`date +"%Y%m%d"` PREV_DATE=`date --date '5 days ago' +"%Y%m%d"` /usr/bin/mysqldump -u사용자id -p비번 DB명 > /backup/mysql_db_bak_${DATE}.sql chown root.root /backup/mysql_db_bak_${DATE}.sql chmod 755 /backup/mysql..
logrotate로 톰캣 로그 관리 정해진 시간마다 로그 파일을 백업시켜주는데, 로그 파일이 무작정 늘어나는 것을 방지하기 위해 로그 파일의 최대 개수를 정해놓으면 최대 개수를 초과했을 때 가장 오래된 로그 파일을 삭제하고 새로운 로그 파일을 생성하면서 rotating 해주는 툴이다. 원리 /etc/logrotate.d/* 밑에 파일을 두면 자동으로 셋팅된다. logrotate.conf 에서 /etc/logrotate.d/* 파일들을 include 하고 있기 때문 작성방법 vi /etc/logrotate.d/tomcat 내용 ${톰캣경로}/logs/catalina.out { copytruncate daily size 100M rotate 30 compress missingok notifempty date..
리눅스 서버시각 한국(서울)으로 바꾸기 현재 시간 정보 보기 [ec2-user@ip ~]$ date Fri Aug 8 06:41:49 UTC 2014 현재 기본으로 설정된 로컬 타임존 보기 [ec2-user@ip-172~]$ sudo cat /etc/localtime TZif2UTCTZif2UTC UTC0 현재 설정된 시스템 기본 타임존 삭제 [ec2-user@ip-172~]$ sudo rm /etc/localtime 서울/아시아(한국) 타임존을 시스템 기본으로 설정 [ec2-user@ip-172~]$ sudo ln -s /usr/share/zoneinfo/Asia/Seoul /etc/localtime 현재 시간 정보 재 확인 [ec2-user@ip-172~]$ date Fri Aug 8 15:48:27..
참조 안되는 원격 브랜치값 제거 저장소에서 사용하지 않는 오브젝트를 제거하려면 $ git remote update origin --prune 브랜치 목록을 출력해서 나오는 원격 브랜치는 원격에서 제거한 브랜치를 반영하지않는다. 원격 브랜치를 제거하는 것이 아니다. 원격 브랜치 중 참조불가능한 객체만 제거하는 작업. 명령어 후 git branch -a 를 해서 참조안되는 원격 리스트가 제거 됐는지 확인하자. git-prune - Prune all unreachable objects from the object database https://git-scm.com/docs/git-prune
로컬 브랜치 생성하기 $ git checkout -b 원격 (remote )브랜치 생성하기 $ git push origin origin은 따로 설정한 리모트 저장소 이름이 있다면 대체 원격 브랜치 트래킹 $ git branch -u / -u옵션 대신 --set-upstream-to로 해도됨 로컬 브랜치 삭제 $ git branch -d 브랜치 이름 다른 브랜치로 이동(checkout)해서 삭제해야함. 원격 브런치삭제 $ git push --delete 또는 $ git push : ``` git-branch - List, create, or delete branches git branch명령어에 자세히 알고 싶다면 아래링크참조 https://git-scm.com/docs/git-branch ```
원격 저장소 최신상태로 업데이트 $ git remote update 최신 상태로 업데이트 해야 최신 브랜치 상태를 가져올 수있다. 로컬, 원격에 있는 모든 브랜치 출력 $ git branch -a 로컬, 원격 모든 저장소의 branch 리스트를 가져온다 로컬 브랜치만 출력 $ git branch 원격 브랜치만 출력 $ git branch -r 원격 브랜치를 로컬에 복사하기 $ git checkout -t remotes/리포지터리 이름/브랜치 이름 -t 옵션과 원격 저장소의 branch 이름을 입력하면 로컬의 동일한 이름의 branch를 생성하면서 해당 branch이름로 checkout을 한다. 원격 브랜치를 로컬에 이름을 바꾸어 복사하기 $ git checkout -b [생성할 branch 이름] --t..
- Total
- Today
- Yesterday
- 리눅스 mysql 백업
- 리눅스 mysql cron
- ContentCachingRequestWrapper caching error
- git 브랜치 삭제
- 리눅스 톰캣 로그관리
- 리눅스 타임존 변경
- git 브랜치 생성
- aws localtime
- 리눅스 깨진파일 삭제
- mysql dump sql import
- aws 서버시각
- 리눅스 톰캣 logrotate
- git 원격브랜치 최신화
- ContentCachingRequestWrapper caching # ContentCachingRequestWrapper file upload
- 톰캣 로그파일 자동삭제
- sql import
- 리눅스 sql 백업덤프 만들기
- 리눅스 파일 인덱스로 삭제
- 리눅스 파일 인덱스 확인
- asciidoctorExtensions
- asciidoctor sourceDir
- git 원격 참조값 제거
- git 최신화
- Could not find org.ysb33r.gradle:grolifant:0.16.1
- teefilter file upload error
- 리눅스 이름깨진 파일 삭제
- 리눅스에서 mysql 백업
- git 원격 브랜치 갱신
- 톰캣 로그파일 자동 삭제
- org.asciidoctor.jvm.convert
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |