일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- sql
- npm
- mybatis
- Gradle
- 시스템운영
- mysql
- 자바
- JVM
- spring
- orm
- 스프링
- Bitbucket
- 트랜잭션
- 리눅스
- nodejs
- ElasticSearch
- heap메모리
- 엘라스틱서치
- 마이바티스
- slave node
- Git
- Elk
- 아파치
- SonarQube
- springboot
- Stash
- Apach
- 레드마인
- DB
- Today
- Total
목록SonarQube (2)
프로그래머호이잇
분석 방법sonar-runner 압축해제 /conf/sonar-runner.properties 주석해제 및 db 경로 설정 및 db 유저 패스워드 설정 분석 할 프로젝트에서 sonar-project.properties 파일 생성 내용 # must be unique in a given SonarQube instancesonar.projectKey=my:project# this is the name displayed in the SonarQube UIsonar.projectName=My projectsonar.projectVersion=1.0 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.# Sinc..
--default-storage-engine=InnoDB CREATE DATABASE sonar2 CHARACTER SET utf8 COLLATE utf8_general_ci;CREATE USER 'sonar' IDENTIFIED BY 'thskqbzm1';GRANT ALL ON sonar2.* TO 'sonar'@'%' IDENTIFIED BY 'sonar';GRANT ALL ON sonar2.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar';FLUSH PRIVILEGES; 권한 확인show grants for 'sonar'@'%'; https://github.com/SonarQubeCommunity/sonar-l10n-ko/releases/download/1.2.0/..