일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- AWS
- Linux
- Spring Legacy Project
- 토비의스프링
- 책 정리
- centos7
- db
- ssh
- DISTINCT
- spring boot
- jdbc
- Client
- docker
- EC2
- Hibernate
- 프로그래머스
- mariadb
- WebHook
- TLS
- vagrant
- github
- TypeScript
- spring
- SSL
- Java
- window
- Jenkins
- 코딩테스트
- sample
- Git
- Today
- Total
목록분류 전체보기 (106)
Woopii Vyeolog
## Github URL : https://github.com/leewoopyo/TestApiClient GitHub - leewoopyo/TestApiClient Contribute to leewoopyo/TestApiClient development by creating an account on GitHub. github.com 1. 소스코드 TestApiClient.html 클릭
[참고] 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://www.vagrantup.com/ Vagrant by HashiCorp Vagrant enables users to create and configure lightweight, reproducible, and portable development environments. www.vagrantup.com 1.Vagrant란? [참고] https://www.vagrantup.com/intro Vagrant는 가상머신 환경을 생성하고 세팅하는 툴이다. 간단하게(간단하지 않음), 세팅된 가상 머신을 생성할 수 있도록 해준다. 2.Vagrant Getting-Start [참고] https://learn.hashicorp.com/collections/vagrant/getting-started..
[참고] https://blackpost38.github.io/2018/01/13/networking-docker-container/ 도커 컨테이너 끼리 통신 · Dev Blog 12345678> docker run –link container2:container2 -itd –name=container1 busybox> docker attach container1> ping container2PING container2 (172.21.0.3): 56 data bytes64 bytes from 172.21.0.3: seq=0 ttl=64 time=0.268 ms64 bytes from 172.21.0.3: seq=1 ttl= blackpost38.github.io [참고] https://woopi1087...
[참고] spring Boot application을 Docker 이미지로 생성 https://spring.io/guides/gs/spring-boot-docker/ Spring Boot with Docker this guide is designed to get you productive as quickly as possible and using the latest Spring project releases and techniques as recommended by the Spring team spring.io 0. 필요 사항 Spring Boot Application [참고] https://woopi1087.tistory.com/51?category=972320 Virtual Box(가상화 소프트웨어)..
[참고] 가상머신 설치 안하고 도커를 테스트 할 수 있는 사이트 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..
1. 컨테이너 vs VM http://www.opennaru.com/cloud/virtualization-vs-container/ 컨테이너 기술과 가상화 기술 비교 - Opennaru, Inc. 가상화 기술은 하이퍼바이저를 통해 하드웨어를 에뮬레이션하여 가상 이미지 마다 게스트 운영 체제로를 사용합니다.컨테이너 는 애플리케이션 수준으로 구성되며 커널 하나를 공유하는 여러 www.opennaru.com 2. 도커란? https://subicura.com/2017/01/19/docker-guide-for-beginners-1.html 초보를 위한 도커 안내서 - 도커란 무엇인가? 도커를 처음 접하는 시스템 관리자나 서버 개발자를 대상으로 도커 전반에 대해 얕고 넓은 지식을 담고 있습니다. 도커가 등장한 배경..
## Github URL : https://github.com/leewoopyo/coding_test/blob/master/programmers/Solution_12922.java GitHub - leewoopyo/coding_test Contribute to leewoopyo/coding_test development by creating an account on GitHub. github.com 1. 소스코드 public String solution(int n) { // 문자열을 추가로 붙일 StringBuilder를 선언 StringBuilder result = new StringBuilder(); // n/2 만큼 반복을 돌리면서 "수박" 을 붙임 for (int i = 0; i < n/2; i+..