인프라/리눅스41 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. [zabbix] zabbix api 사용법 개요 - zabbix api 처음 사용해본다. - 대략적으로 맨처음 인증키를 받고 해당 인증키값을 이용하여 json 요청을 하여 응답을 받는 형태 - 쉘스크립트로 작성 세부내용 - 쉘 크립트로 작성함 - AUTH_TOKEN 변수에 인증키값을 받는다. - | jq -r '.result'은 결과값만 출력할 수 있도록 해줌 - 해당스크립트 동일한 위치에 action_update.json을 실행시켜 결과값을 받는다. #!/bin/bash # Zabbix API URL and authentication ZABBIX_URL="https://zbx.test.com/api_jsonrpc.php" # Authenticate and get auth token AUTH_TOKEN=`curl --request POST --u.. 2023. 4. 5. [redis] rocky8 redis 7.0 설치 개요 rocky8 redis 7.0 설치 방법 세부내용 - rocky8에서 테스트및 구글링 결과 yum으로 딱히 설치할 수 없었다. - 결론은 소스설치 해야한다 - 직접 테스트해본 결과임 ## 다운로드 및 설치 wget https://download.redis.io/releases/redis-7.0.8.tar.gz tar -xvzf redis-7.0.8.tar.gz cd redis-7.0.8 make make install ## /usr/lib/systemd/system/redis.service 에 아래 내역 추가 및 저장 [Unit] Description=Redis In-Memory Data Store After=network.target [Service] User=redis Group=redis Ex.. 2023. 2. 11. 이전 1 2 3 4 5 6 7 ··· 9 다음 반응형