일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mybatis
- nodejs
- slave node
- 아파치
- Stash
- Java
- Git
- npm
- heap메모리
- 엘라스틱서치
- orm
- Gradle
- sql
- Bitbucket
- Apach
- 마이바티스
- Elk
- 시스템운영
- DB
- SonarQube
- 레드마인
- 리눅스
- 자바
- springboot
- 트랜잭션
- 스프링
- ElasticSearch
- JVM
- mysql
- spring
- Today
- Total
목록호이잇 프로그래밍 (77)
프로그래머호이잇
기존 var 가 let, const 로 나뉨 let 변수const 변수 let은 변경가능 Example ) let a = 1; let a = 2 안됨!!var a = 1;var a = 2; 잘됨 const 는 변경 불가(참조형으로 쓰시면됩니다 array)(자바 final 과 비슷한 느낌?) Example ) const a = 1; a = 2 안됨!!
Bitbucket v,svh,SV 파일 하이라트 $BITBUCKET_HOME/shared/bitbucket.properties 에추가 syntax.highlighter.text/x-systemverilog.executables=v,sv,svh syntax.highlighter.text/x-systemverilog.extensions=v,sv,svh Bitbucket 서버 재기동 참고 : https://confluence.atlassian.com/bitbucketserverkb/configuring-syntax-highlighting-for-file-extensions-779171322.html 위 링크를 참조하면 다른 파일들도 highlight 가능!
fatal: unable to access 'https://아이디@주소/bitbucket_vm/scm/tes/test1.git/': SSL: no alternative certificate subject name matches target host name '주소' 요런 에러 발생.. 이떄는 요코드 실행하면됨 git config --global http.sslVerify false ssl 무시함!!!
아파치는 부모 프로세스는 root 로 실행되고, 하위 프로세스는 기본은 deamon 유저로 실행됨. 우리가 하는것은 하위 프로세스의 실행 유저 변경하는것!! httpd.conf 수정 User deamon Group deamon 을 아래와 같이 수정 User 유저1Group 그룹1 해당 유저와 그룹으로 실행시 웹 페이지 파일들은 해당 유저가 접근가능해야합니다!!!!
httpd.conf 수정 VirtualHost 태그 내부에 삽입 RewriteEngin onRewriteCond %{REQUEST_METHOD} !^(GET|POST|HEAD)RewriteRULE .* - [F]
httpd.conf 수정 Rewirte 모듈을 로드 해야함 LoadModule rewrite_module modules/mod_rewrite.so 혹은 태그 내부에 적용하면됨 RewriteEngin onRewriteRule /(.*) RedirectURL
분석 방법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/..
Step 1. Download and Install Gradle. # cd /opt# sudo wget https://services.gradle.org/distributions/gradle-2.2-bin.zip# sudo unzip gradle-3.1-bin.zip# sudo ln -s gradle-3.1 gradle Step 2. Set Gradle Environment Value. # sudo vim /etc/profile.d/gradle-env.sh export GRADLE_HOME=/opt/gradleexport PATH=$PATH:$GRADLE_HOME/bin # sudo source /etc/profile.d/gradle-env.sh # --> 다른방법으로 config 설정파일 열기 및 적용..