인프라171 리눅스 svn 명령어 파일 한개만 다운로드 받기 svn export 리눅스에서 svn 서버에서 최신버전 파일들을 받는 명령어로 svn co 와 svn checkout를 사용한다. 하지만 해당 명령어를 다운받는 최소 단위는 폴더이다. 즉 svn 보관소 내에 단일 파일 1개를 해당명령어로 받을 수 없다. 이럴땐 svn export 명령어를 사용한다. svn export svn://다운받을파일절대경로 [다운받을주소] --username 아이디 --password 패스워드 예시) 서버 /data/ 경로에 svn 저장소에 있는 test.dll을 받는다. svn export svn://123.123.123.123/data/test.dll /data --username 아이디 --password 패스워드 2023. 8. 3. The client has disconnected from the server. reashon: Reason : Unable to authenticate using any of the configured authentication methods. 개요 The client has disconnected from the server. reashon: Reason : Unable to authenticate using any of the configured authentication methods. 에러가 발생할때 처리방법 처리방법 /etc/ssh/sshd_config 에서 아래와 같이 설정 해야 해결된다. PasswordAuthentication yes 수정후 sshd 서비스 재시작 2023. 7. 10. ubuntu 22.04 php8.2 설치 개요 - 우분투 22.04에 php8.2를 설치할 수 있다. 설치방법 #시스템 업데이트 실행 apt update && apt upgrade -y # ondrej ppa 레파지토리 추가 add-apt-repository ppa:ondrej/php # 레파지토리 업데이트 apt update #php8.2 설치 apt install php8.2 -y #버전확인 php --version 2023. 6. 20. [linux] sudo : PAM authentication error : Module is unknow [개요] sudo su - 를 통한 root 권한 획득 시도시 sudo : PAM authentication error : Module is unknow 에러가 발생한다 [해결방법] /etc/pam.d/system-auth 파일에서 아래 내용삭제 해야함 auth required pam_tally2 onerr=fail deny=5 unlock_time=180 no_magic_root 로그인 실패시 보안 설정인데. 잘못설정했따간 root 권한상승을 못한다... 자빅스를 통해 해결했으나... 보통의 경우는 부팅과정(grub)에서 root 권한 획득 후 수정해야할 것으로 보임 2023. 5. 31. [jenkins] 젠킨스 에러 sudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper 개요 - 젠킨스 빌드 실행시 아래와 같은 에러가 발생한다. - build step에 shellscript 실행 구문이 있고 sudo로 실행하려고 할 때 발생 sudo /data/ansible/file/win_test.sh sudo: a terminal is required to read the password; either use the -S option to read from standard input or configure an askpass helper sudo: a password is required Build step 'Execute shell' marked build as failure Finished: FAILURE 해결방법 /etc/sudoers에 아래 내역 추가 jenkins ALL=(.. 2023. 5. 3. 이전 1 ··· 8 9 10 11 12 13 14 ··· 35 다음 반응형