본문 바로가기

분류 전체보기568

[Jenkins] 젠킨스에서 git 설정하기 아래의 글들을 참고  https://community.jenkins.io/t/cant-connect-to-git-repo/14640  Can't connect to git repoHello please I’m trying to comment jenkis to a public repository and each time I git this error Failed to connect to repository : Error performing git command: git.exe ls-remotecommunity.jenkins.io https://holjjack.tistory.com/283 [Jenkins] Jenkins 복구 후, git cloning remote repo 'origin' 오류 해결들어가며 .. 2024. 6. 24.
[Jenkins] 윈도우에서 JENKINS_HOME 설정하기 https://www.jenkins.io/doc/book/managing/system-configuration/ Configuring the SystemJenkins – an open source automation server which enables developers around the world to reliably build, test, and deploy their softwarewww.jenkins.io 2024. 6. 24.
[jenkins] 윈도우에 젠킨스 설치하기 https://www.jenkins.io/doc/book/installing/windows/#invalid-service-logon-credentials WindowsJenkins – an open source automation server which enables developers around the world to reliably build, test, and deploy their softwarewww.jenkins.io   설치 과정중 login type에서 Run service as localsystem으로 선택했다.   아래의 포스팅은 jenkins 처음 실행시 필요한 비밀번호를 확인하기 위함  https://www.jenkins.io/doc/book/system-administration.. 2024. 6. 24.
[Other] 오라클 데이터 베이스에 dmp 파일 임포트 하기 imp userid=아이디/비번 file='파일경로(반드시 파일명까지)' full=y;덤프파일을 db에 임포트 하기 위한 명령어   cmf에 위와 같이 입력해 준다.    그러면 덤프파일의 내용에 따라위와 같이 임포트가 되고  임포트가 완료된다. 2024. 6. 23.
[Kubernetes] Command - "kubectl port-forward" kubernetes lab은 위와 같다.    마스터 노드의 주소   worker-node와 잘 연결이 되어있다.     pod를 생성한다.    pod의 주소  curl 명령어를 실행하면은 연결이 되지 않는다.  마스터 노드의 주소 "10.0.1.201"과워커 노드의 주소 "10.44.0.1"이 다른 네트워크에 속해있기 때문이다.   해결방법    worker-node-1 에서 실행되고 있는 test1 pod는worker-node-1 80번 포트로 실행이 되고 있다.     worker-node-1의 80번 포트와 control-plain의 80번 포트를 "port-forwarding"해준다.    정상적으로 명령어가 실행이 된다.   port-forwarding 관련은 아래의 포스팅을 참고 https.. 2024. 6. 21.
[Aws] amazon linux에 jenkins 설치하기 https://www.jenkins.io/doc/book/installing/linux/#red-hat-centos LinuxJenkins – an open source automation server which enables developers around the world to reliably build, test, and deploy their softwarewww.jenkins.io  amazon linux는 redhat 기반이므로 상단 메뉴의Documentation -> Installing Jenkins -> linux -> Red Hat/Alma/Rocky 클릭-> Long Term Release 로 설치하였다.  중간의 Java는 amazon 리눅스에서 사용하기 위해서 dnf -y insta.. 2024. 6. 21.
[Linux] rocky linux containerd 설치하기 https://phoenixnap.com/kb/install-kubernetes-on-rocky-linux How to Install Kubernetes on Rocky Linux {Manual or via Ansible}Follow this easy to tutorial to learn how to install Kubernetes on Rocky Linux manually or by using the Ansible IaC automation platform.phoenixnap.com 2024. 6. 20.
[Linux] ERROR 2002 (HY000): Can't connect to server on 'x.x.x.x' (115) 이런 구조의 3tier 클라우트 랩을 생성하려고 한다.그런데 backend ec2에서 db ec2에 연결을 하지못한다.   mysql-client를 설치하고 테스트 해봐도 그러하다    해결방법 위의 db 설정 파일을 연다    27행 쯤의 bind-address의 127.0.0.1을   0.0.0.0으로 수정해 준다.   그리고 mysql (혹은 mariadb)를 재시작 해준다.  그리고 backend 인스턴스에서 앱을 실행하면은db와 인스턴스의 데이터 베이스와정상적으로 연결되고  백엔드도 정상적으로 구동이 되었다.    프론트 앱에서 backend 인스턴스의어플리 케이션과의 통신도 정상적으로 이루어진다.   자세한 내용은 아래의 링크를 참고   https://stackoverflow.com/quest.. 2024. 6. 19.
[Other] "java.sql.SQLException: ORA-01017: invalid username/password; logon denied" logon denied에러가 발생했다.  아이디 및 비밀번호  cmd 에서 sqlplus로도 잘 접속이 된다.  혹시 몰라서 sqlplus에서 로그인 정보를 입력하고   연결 테스트를 누르면  정상적으로 연결이 된다.   이번에는 인텔리 제이에서 연결 시도   연결 테스트를 누르면  정상적으로 연결이 된다.    db의 user정보에는 정상적으로 있다.  혹시 몰라서 user에게 권한을 부여해준다.   여전히 안된다.  https://alisyabob.tistory.com/84 [ORACLE] ora-01017 invalid username/password logon denied원인 사용자 이름 또는 비밀번호가 잘못 입력된 경우 대/소문자를 구분하여 입력하지 않은 경우 사용자 계정이 잠겨있는 경우 사용자.. 2024. 6. 17.