일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Linux
- spring boot
- EC2
- 책 정리
- Client
- TLS
- Git
- window
- jdbc
- github
- DISTINCT
- Java
- 프로그래머스
- Spring Legacy Project
- spring
- ssh
- 토비의스프링
- SSL
- Hibernate
- db
- centos7
- WebHook
- Jenkins
- docker
- mariadb
- TypeScript
- AWS
- vagrant
- 코딩테스트
- sample
- Today
- Total
목록Linux (4)
Woopii Vyeolog
● Centos7에 Jenkins 설치 1. .Jenkins가 설치 되어 있는 지 확인 명령어 =====> yum list installed | grep jenkins 2. Jenkins 설치파일을 저장소에 다운로드 명령어 =====> wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo ##만약 bash: wget: command not found 문구가 나오면 아래 명령어를 입력 명령어 =====> yum install -y wget ##만약 wget 명령어 사용 시 아래와 같은 문구가 나오면 다음 명령어 입력ERROR: cannot verify pkg.jenkins.io's certificate,..
● Centos7에 mariadb 설치 1. 설치한 os의 버전 확인 명령어 =====> cat /etc/*release 2. 아래 사이트에서 os 버전 및 MariaDB 설치할 버전을 선택하면 Repository 정보와 설치 명령어를 설명해줌 https://mariadb.org/download/?t=repo-config Download MariaDB Server - MariaDB.org REST API Release Schedule Reporting Bugs … Continue reading "Download MariaDB Server" mariadb.org 3. repository 정보 입력 명령어 =====> vi /etc/yum.repos.d/MariaDB.repo MariaDB 파일 입력 정보 ..
● Centos7에서 openjdk11 설치하기 1. root 계정으로 로그인 명령어 =====> sudo su 2. yum 명령어로 설치 가능한 jdk 리스트 확인 명령어 =====> yum list java*openjdk* 3. 원하는 버전의 openjdk 설치 list에 있는 openjdk 패키지가 JRE이고 openjdk-devel 이라고 되어 있는 패키지가 JDK라고 생각하면 됨 (본글에서는 open jdk 11버전을 설치할 것) 명령어 =====> yum install -y java-11-openjdk-devel.x86_64 4. 설치 확인 명령어1 =====> java -version 명령어2 =====> javac -version 명령어3 =====> which java
Linux 환경에서 테스트를 하기 위한 세팅 1. Virtual Box 다운 및 설치 https://www.virtualbox.org/wiki/Downloads Downloads – Oracle VM VirtualBox Download VirtualBox Here you will find links to VirtualBox binaries and its source code. VirtualBox binaries By downloading, you agree to the terms and conditions of the respective license. If you're looking for the latest VirtualBox 6.0 packages, see Virt www.virtualbox.org..