일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ssh
- Hibernate
- EC2
- Client
- vagrant
- DISTINCT
- centos7
- window
- docker
- Spring Legacy Project
- WebHook
- github
- spring boot
- db
- Java
- Jenkins
- SSL
- spring
- 코딩테스트
- jdbc
- TypeScript
- TLS
- Git
- AWS
- 토비의스프링
- sample
- mariadb
- 프로그래머스
- 책 정리
- Today
- Total
목록centos7 (6)
Woopii Vyeolog
[참고] vagrant 설치 https://woopi1087.tistory.com/89 [Vagrant] Vagrant란?, Vagrant로 VirtualBox에 Centos7 설치 [참고] https://www.vagrantup.com/ Vagrant by HashiCorp Vagrant enables users to create and configure lightweight, reproducible, and portable development environments. www.vagrantup.com 1.Vagrant란?.. woopi1087.tistory.com 1. vagrantfile 작성 Vagrant.configure("2") do |config| # docker_server for dock..
[참고] 가상머신 설치 안하고 도커를 테스트 할 수 있는 사이트 https://labs.play-with-docker.com/ Play with Docker Play with Docker A simple, interactive and fun playground to learn Docker Login labs.play-with-docker.com 1. 도커를 다룰 유저 생성 예 : useradd devops passwd devops [참고] 만약 해당 유저에게 sudo를 부여하고자 한다면 echo "devops ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/devops 2. 도커 설치 다음 명령어를 순차적으로 입력한다. yum update -y yum install -y yum..
● 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..