Git서버에 코드를 push 하면 자동으로 Jenkins 빌드가 동작하도록 설정하는 방법을 알아봅시다. + 이 글에서 사용하는 git서버는 설치형 gitea이지만, gogs, gitlab, bitbucket 등 다른 git서버도 크게 다르지 않을겁니다.(아마도?) #1. 젠킨스 플러그인 설치 여기서는 gitea 를 사용하기 때문에 gitea plugin을 먼저 설치합니다. (당연히 기본적으로 git, git-server 플러그인은 설치가 되있을거라고 믿고...) Gitea 플러그인 설치를 마치면 설치된 플러그인 목록에서 아래와 같이 확인할 수 있습니다. 이제 젠킨스 환경설정 > 시스템 설정에 들어가보면 gitea 서버를 설정하는 부분이 생겼을 텐데, 아래와 같이 작성합니다. + Server URL은 실제..
오오 된다. 된다. 아니 이거 말고 임마... 다시 물어볼게 ... 아직 안되겠다. 좀 더 학습하렴. 근데 글은 나보다 확실히 잘 쓰는 것 같네.
#1. MARP?Marp는 마크다운언어로 작성한 .md 파일을 쉽고 빠르게 프리젠테이션 문서로 변환할 수 있도록 도와주는 툴입니다.Marp: Markdown Presentation Ecosystem Marp: Markdown Presentation EcosystemMarp (also known as the Markdown Presentation Ecosystem) provides an intuitive experience for creating beautiful slide decks. You only have to focus on writing your story in a Markdown document.marp.appVSCode의 확장기능으로 설치하여 편리하게 사용할 수 있습니다.#2. VS Code ..
#1. 응시 계기 원래는 AWS Certified Developer 를 준비하고 있었으나, 급하게 AWS Certified Cloud Practitioner 로 노선을 바꿨다. 애초에 Practitioner는 고려대상도 아니었고, Developer 나 Solutions Architect 를 따려고 마음 먹었으나 회사에서 요구한 자격증 취득기간이 점점 다가오면서 미처 준비를 다 하지 못한 탓에 Practitioner로 응시하게 됐고, 해당 자격증을 취득하게 됐다. #2. 공부 방법 기간 : 약 1주, 하루 20~30분 방법 : https://explore.skillbuilder.aws/ 에서 AWS Cloud Practitioner Essentials (Korean) (한국어 자막) 자료 리딩, https..
한글 번역은 파파고 번역이기 때문에 어색할 수 있습니다. 단어 하나하나 보다는 맥락을 이해하시면 도움이 될 것 같습니다. Q.81 A Linux EC2 instance operating on Amazon Web Services requires management of the AWS architecture. How may an Amazon EC2 instance be configured to perform secure AWS API calls? A. Sign the AWS CLI command using the signature version 4 process. B. Run the aws configure AWS CLI command and specify the access key id and secret..
#1. 서비스 설정 파일 생성 먼저 .service 파일을 생성해야 합니다. /etc/systemd/system 위치로 이동하여 [생성할 서비스 이름].service 파일을 만듭니다. cd /etc/systemd/system sudo vi quiz_start.service 아래와 같이 내용을 작성합니다. [Unit] Description=quiz start After=mysql.service [Service] ExecStart=/bin/bash -c "exec java -jar /home/ubuntu/app/quiz-0.0.1-SNAPSHOT.jar" [Install] WantedBy=multi-user.target Description = 서비스에 대한 설명 After = 서비스가 언제 실행될 것인지 ..