| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- javascript
- spring3
- security
- FCM
- Maven
- Next.js
- jquery
- mybatis
- config
- yona
- PM2
- NextJS
- nodejs
- SpringBoot
- popup
- node.js
- Eclipse
- centos7
- Tomcat
- git
- rocky9
- MariaDB
- MSsql
- pwa
- Push
- docker
- jenkins
- Java
- ajax
- mysql
- Today
- Total
목록전체 글 (173)
종이 한장 차이...
[root@localhost home]# useradd graykang [root@localhost dbkang]# passwd graykang Changing password for user graykang. New password: Retype new password: passwd: all authentication tokens updated successfully. [root@localhost dbkang]#
그동안 jenkins로 운영환경에 배포를 할 경우 apache-httpd + tomcat 인 환경에 war로 배포를 하였다. 하지만 이번에 진행하는 프로젝트는 next.js로 만들어진 node.js 기반의 프로젝트이다 보니 기존 배포 방법 말고 node.js로 빌드하고 빌드된 파일을 원격서버에 배치시켜야 하는 방법을 사용해야 하기에 관련하여 작업했던 내용을 정리해 본다. 원격지서버인 운영서버는 node.js 서버로만 서비스를 할 예정이다. ##시스템 구성 1. centos7+jenkins (jenkins가 설치되어 있고 node.js가 설치되어 있는 centos서버) 주: node.js설치는 2. rocky9 +node.js 를 참조해서 nvm으로 설치하면 된다 https://graykang.tistor..
1. Yona에 생성된 Git 저장소를 clone 받아서 로컬에 Git 저장소를 만들고 README.md 파일을 Yona에 올릴 수 있습니다.git clone http://graykang@localhost:9000/graykang/test-ex2 test-ex2cd test-ex2/echo "# test-ex2" > README.mdgit add README.mdgit config user.email "graykang@test.com"git config user.name "graykang"//git config credential.helper store --> 패스워드 반영구 저장옵션 최초 한번은 입력git commit -m "Hello Yona"git push origin master2. 로컬에서 G..
1. nvm 스크립트 설치. ]# wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash 2. source ~/.bash_profile 실행하여 스크립트 적용. ]# source ~/.bash_profile 3. 설치할 node 버전 검색 [root@localhost ~]# nvm list-remote v0.1.14 v0.1.15 v0.1.16 v0.1.17 . . . . v18.10.0 v18.11.0 v18.12.0 (LTS: Hydrogen) v18.12.1 (LTS: Hydrogen) v18.13.0 (LTS: Hydrogen) v18.14.0 (LTS: Hydrogen) v18.14.1 (LTS: Hydro..
기존 jenkins를 2.1XX.X 버전을 사용하고 있었는데 현재 기준 최신버전 2.426.2 버전으로 업그레이드를 하고 나니 jenkins가 실행이 아니 된다... 하여 해결했던 과정을 정리해 본다. 1. jenkins 최신버전 war파일 다운로드. https://get.jenkins.io/war-stable/2.426.2/jenkins.war 2. 기존 jenkins.war 파일 백업 및 다운로드한 jenkins.war 파일로 교체 작업은 /home/graykang 에서 한다. 백업 # cp /usr/share/java/jenkins.war ./jenkins.backup.war 교체 # cp ./jenkins.war /usr/share/java/ 3. 2번까지 하고 jenkins를 실행하면 아래와 같..
TEST_A 테이블의 cost를 업데이트하는데 send_pagecnt와unicost 를 곱한 값으로 업데이트 한다. 조건은 특정 기간동안 결과 값이 100이 었던 row들 기준이며 각 row별 cost = send_pagecnt * unitcost 처리된다. 서비스 로직상 cost 컬럼에 데이터가 누락된 경우 해당 데이터를 복구할 수 있는 근거 값이 있는 컬럼들의 값을 계산 또는 조합 하여 대체... 할 경우 참고. UPDATE TEST_A SET cost = send_pagecnt * unitcost WHERE send_idate BETWEEN CONCAT('2023-10-01',' 00:00:00') AND CONCAT('2024-01-31',' 23:59:59') AND cost = 0 AND re..