분류 전체보기
-
centOS jenkins 설치(jdk설치)WEB/BACK 2022. 6. 23. 15:48
jenkins 설치전 1. jdk설치하고 그 경로를 입력해준다. 2. 젠킨스의 기본port를 변경한다. 1. 설치가능한 jdk11 목록 sudo yum list "java-11-openjdk-devel*" 2.선택하여 설치 sudo yum install java-11-openjdk-devel.x86_64 3. javac 심볼릭링크의 실제주소를 readlink명령어로 읽어들임 which javac /usr/bin/javac readlink -f /usr/bin/javac /usr/lib/jvm/java-11-openjdk-devel.x86_64/bin/javac 4. javac 가 위치한 bin디렉터리를 환경변수 PATH에 추가한다. 전체시스템에 적용하기위해 /etc/profile에 환경변수 추가(파일 맨..
-
2/2-GCP MySQL 설치WEB/BACK 2022. 6. 20. 17:12
1. 연결 밑에 ssh 클릭해서 shell들어가기 2. 비번 설정 sudo passwd 3. root로그인 sudo su 4. mysql 설치 sudo yum -y install http://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm # MySQL 레포지터리를 추가합니다. sudo yum -y install mysql-community-server # MySQL을 설치합니다. sudo systemctl enable mysqld # 시스템 재시작 시, MySQL이 자동으로 실행되도록 합니다. sudo systemctl start mysqld # MySQL을 실행합니다. 5. mysql 보안 설정 기본적으로 mysql은 외부접속이 되지 않는다..
-
[js] 현재 url parameter값 가져오기WEB/FRONT 2022. 6. 14. 11:17
네이버에 뭔가 썼을때 여기서 파라미터 .where 값을 가져오고싶을때 아래와 같이 사용할 수 있다. function URLParser(u){ var path="",query="",hash="",params; if(u.indexOf("#") > 0){ hash = u.substr(u.indexOf("#") + 1); u = u.substr(0 , u.indexOf("#")); } if(u.indexOf("?") > 0){ path = u.substr(0 , u.indexOf("?")); query = u.substr(u.indexOf("?") + 1); params= query.split('&'); }else path = u; return { getHost: function(){ var hostexp = ..
-
[java] MD5카테고리 없음 2022. 6. 14. 11:08
MD5 param = 암호화하려는 문자열 public static String getMD5(String str){ String rtnMD5 = ""; try { MessageDigest md = MessageDigest.getInstance("MD5"); md.update(str.getBytes()); byte byteData[] = md.digest(); StringBuffer sb = new StringBuffer(); for(byte byteTmp : byteData) { sb.append(Integer.toString((byteTmp&0xff) + 0x100, 16).substring(1)); } rtnMD5 = sb.toString(); } catch (Exception e) { e.printS..
-
1/2-GCP 서버 구성하는법, Google Cloud PlatformWEB/BACK 2022. 6. 11. 17:54
1. GCP 홈페이지에 가입해서 무료로 90간 사용한다. https://cloud.google.com/ 클라우드 컴퓨팅 서비스 | Google Cloud 데이터 관리, 하이브리드 및 멀티 클라우드, AI와 머신러닝 등 Google의 클라우드 컴퓨팅 서비스로 비즈니스 당면 과제를 해결하세요. cloud.google.com 2. VM 인스턴스 생성 사용 클릭후 1분정도 시간이 소요된다. 인스턴스 만들기 클릭 기다리면 인스턴스만들기 화면 나온다. cpu2, 3GB 대충 선택 centOS 7 선택, 하단에 http, https모두 체크 만들기 클릭 3. 네트워크 설정 앞선 설정 다되면 리스트에 만들어진것 확인할 수 있다. 오른쪽 땡땡땡클릭한다. 네트워크 세부정보 클릭 네트워크에서는 두가지를 설정한다. 1. 고정..
-
[3/3] 스프링부트 데이터베이스 연결하기 (hikari,mysql,mybatis)카테고리 없음 2022. 5. 29. 16:51
1. application.properties에 데이터 소스 설정 spring.datasource.hikari.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.hikari.jdbc-url: jdbc:mysql://localhost:3306/board?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC spring.datasource.hikari.username=root spring.datasource.hikari.password=root mybatis.configuration.map-underscore-to-camel-case=true 2. DatabaseConfiguration file 생..
-
MySQL 설치 (window)WEB/BACK 2022. 5. 28. 16:04
1. 사이트 이동 https://dev.mysql.com/downloads/installer/ MySQL :: Download MySQL Installer Select Operating System: Select Operating System… Microsoft Windows Select OS Version: All Windows (x86, 32-bit) Windows (x86, 32-bit), MSI Installer 8.0.29 2.3M (mysql-installer-web-community-8.0.29.0.msi) MD5: 4f735569267527dec28d9e8d977f33d1 | Signatu dev.mysql.com 2. 아래꺼 다운 3. nothanks. 클릭 4. 다운로드한 파일 실행후 ..