일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- NextJS
- centos7
- nodejs
- jenkins
- submit
- mybatis
- MSsql
- config
- Maven
- MariaDB
- yona
- ajax
- Next.js
- docker
- node.js
- PM2
- Push
- git
- rocky9
- spring3
- jquery
- Eclipse
- pwa
- security
- FCM
- SpringBoot
- javascript
- Java
- popup
- mysql
- Today
- Total
목록centos7 (5)
ふたりで
그동안 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..
centos(linux)에서 shell script를 작성 후 crontab에 등록하여 mysqlDB를 백업하는 방법을 정리한다. 1. 특정 mysqlDB를 백업하기 위한 shell script작성. shell script 이름은 graykangDB_export_import.sh (퍼미션: -rwxr-xr-x. 1 root root) mv graykangDB_copy.sql $(date '+%y%m%d')_graykangDB_old.sql mysqldump --no-autocommit --single-transaction --add-drop-database --add-drop-table --routines --triggers -uroot --password=1******0 graykangDB > gray..
#환경: - VirtualBox(OS): CentOS7 - docker: Server Version: 20.10.17 - mssql: mcr.microsoft.com/mssql/server:2019-latest 1. mssql 이미지 파일 다운로드 및 확인. [root@localhost ]# docker pull mcr.microsoft.com/mssql/server:2019-latest 2019-latest: Pulling from mssql/server 87fe25d61c01: Pull complete 209c3118dbee: Pull complete 9d2f7158599c: Pull complete Digest: sha256:f54a84b8a802afdfa91a954e8ddfcec9973447ce8..
1. 오라클 VirtualBOX에 centos7을 먼저 설치 한다. 해당 작업은 docker전용서버를 생성 하는 과정이며, 관련한 내용은 생략한다...너무 쉬워서? ㅎㅎ VirtualBOX 환경일경우 중요하건 아래 그림처럼 포트포워딩 부분이다. 주) 호스트IP는 VirtualBOX+centos7이고, 게스트IP는 본인의 local PC(VirtualBOX가 설치되면 생성되는 네트웍카드의 IP)이다. 2. centos7 update 하기. VirtualBOX에 설치한 centos7의 yum update를 하여 최신버전으로 업데이트 한다. [root@localhost /]# yum -y update 2-1. docker 레파지도리추가. yum-config-manager \ --add-repo \ https:..
[root@localhost lib]# netstat -tln Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:27017 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN tcp6 0 0 :::22 :::* LISTEN tcp6 0 0 ::1:631 :::* LISTEN tcp6 0 0 127.0...