| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- heap메모리
- mybatis
- JVM
- Java
- mysql
- orm
- ElasticSearch
- 아파치
- sql
- 리눅스
- 트랜잭션
- Bitbucket
- slave node
- SonarQube
- npm
- Git
- 마이바티스
- Stash
- springboot
- 레드마인
- Elk
- 스프링
- 자바
- Gradle
- nodejs
- 시스템운영
- DB
- spring
- Apach
- 엘라스틱서치
- Today
- Total
프로그래머호이잇
socket.io 의 내부를 보다가 까먹을 까봐 적어놓습니다. require.resolve 함수는 모듈 내부의 파일경로를 입력받아 해당 파일을 가져오는 함수 입니다. require는 모듈 자체를 가져온다면 요거는 필요한 파일만 가져오는 것이지용~ 예시 ) require.resolve('socket.io-client/dist/socket.io.min.js')
npm 사설 저장소 만들기 npm install -g sinopia config.yaml 수정 # a list of users users: admin: password: 비번 npm set registry "http://localhost:4873/" npm config get registry npm --registry http://localhost:4873/ 배포 npm publish 기존 repo https://registry.npmjs.org/~/.npmrc 에 registry 에 url 추가 윈도우는 %userprofile%/.npmrc 파일에 추가하시면 됩니다.
jira 설치 방법 2 mysql 설치(설치방법 생략) - mysql 암호 지정 # mysqladmin -u root password 'password' (mysql 구동안하고 명령어치면 에러가 뜬다) - 데이터베이스 생성 # mysql -u root -p mysql> create database jira character set utf8; > * 삭제는 drop database jira; * 생성확인은 show databases; mysql> grant all privileges on jira.* to jira@localhost identified by 'PASSWORD' with grant option; mysql> flush privileges; mysql> quit - mysql 환경 설정 # v..