일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 아틀라시안
- 우분투
- PostgreSQL
- ubuntu
- 자바
- javascript
- 자바스크립트
- 설치
- 3.0
- java
- DATABASE
- 스크립트
- script
- 하모니카
- 파이썬
- 설정
- Windows
- Atlassian
- node
- JS
- python
- DB
- install
- Linux
- hamonikr
- postgres
- 윈도우
- 노드
- 데이터베이스
- 리눅스
- Today
- Total
목록전체 글 (192)
LukeHan 의 잡다한 기술 블로그
설치하기 # add repository sudo sh -c 'echo "deb [arch=amd64] http://repo.whale.naver.com/stable/deb stable main" >> /etc/apt/sources.list.d/naver-whale.list' # add apt-key wget -q -O - http://repo.whale.naver.com/stable/deb/public.gpg | sudo apt-key add - # update sudo apt-get update # install sudo apt-get install naver-whale-stable NO_PUBKEY 에러가 발생하는 경우 wget -q -O - http://repo.whale.naver.com/stab..
기존 svn 저장소에 있는 코드를 git 으로 이전할 필요가 있어 아래와 같이 진행하게 되었다. 이전 작업자가 commit log 정보를 유지하지 않아 기존 것을 사용할 수 없는 상태여서 아래와 같이 문서를 작성하게 되었다. 준비 svn to git migration 진행을 위해 아래의 두 프로그램이 사전설치 되어 있어야 한다. 사전 설치 프로그램 java git svn Download migration script : https://bitbucket.org/atlassian/svn-migration-scripts/downloads java -jar svn-migration-scripts.jar verify migration script 를 다운 받았다면 위와 같이 입력하여 migration 이 가능한지..
해당 문서는 Gerrit 3.x 버전에서 진행하였습니다. Document Document for Plugin(jar) : https://gerrit-review.googlesource.com/Documentation/dev-plugins.html Document for js : https://gerrit-review.googlesource.com/Documentation/pg-plugin-dev.html 공식 문서 상 gerrit 은 jar 파일 및 javascript 로 Plugin 개발 및 적용이 가능하다. Make js Plugin /** * @Date 2022.02.08 * @Auther LukeHan { // your codes ... }); 위의 코드는 javascript Plugin 의 Sk..
해당 문서는 Gerrit 3.4.0 버전 설치를 설명하고 있습니다. Download Gerrit : https://gerrit-releases.storage.googleapis.com/index.html JAVA : 1.8 or 11 Install cmd 창에서 다운로드 받은 gerrit 경로로 이동 후 아래의 코드를 입력한다. java -jar gerrit.war init -d your\gerrit\download\directory # ex java -jar gerrit-3.4.0.war init -d C:\Users\dsjh03966.id\Downloads\work\gerrit-3.4.0 Start daemon cmd 창에서 다운로드 받은 gerrit 경로로 이동 후 아래의 코드를 입력한다. java..
환경 구성 OS : HamoniKR SUN (ubuntu 18.04) 설치 sudo apt-get install apache2 apt-mirror mirror 서버를 구축하기 위해 apache2 와 apt-mirror 를 설치합니다. mirror 설정 sudo mkdir /repos mirror repository 를 구축할 디렉토리를 생성합니다. sudo vi /etc/apt/mirror.list 위와 같이 입력하여 apt-mirror 설정을 진행합니다. ############# config ################## # # set base_path /var/spool/apt-mirror # # set mirror_path $base_path/mirror # set skel_path $base_..
mirror server 구축 중 아래와 같이 ssh 가 끊어지는 현상이 발생하였다. packet_write_wait: Connection to 127.0.0.1 port 22: Broken pipe 이는 SSH 연결 후 일정 시간 이상 서버와 상호작용이 없을 경우 발생한다고 한다. 이 경우 Server 혹은 Client 에서 AliveInterval 설정을 해 주면 주기적으로 ping 을 보내게 되어 증상을 해결할 수 있다. vi ~/.ssh/config 접속지에서 위와 같이 입력하여 Client SSH 설정을 진행한다. 파일이 없다면 생성하여 진행한다. Host * ServerAliveInterval 30 ServerAliveCountMax 5 위와 같이 입력한 후 저장한 뒤 접속하면 이상 없이 사용..