에러 문구

Permission denied (publickey,gssapi-keyex,gssapi-with-mic).

해결

sshd_config 파일에 아래 내용 주석 제거

vi /etc/ssh/sshd_config

 

PermitRootLogin yes

PasswordAuthentication yes

 

저장 이후 sshd재시작

service sshd restart

 

참고

https://algo79.tistory.com/entry/Permission-denied-publickeygssapi-keyexgssapi-with-mic-for-centos69

현상

Last_IO_Error: The slave I/O thread stops because a fatal error is encountered when it try to get the value of SERVER_ID variable from master. Error: 

 

해소

server_uuid master 와slave를 다르게 설정

 

auto.cnf 파일명 삭제

 mv auto.cnf auto.cnf.bak

 

my.cnf 파일 수정

[mysqld]
server-id  = 111  --> 222

 

mysql 재시작

 systemctl restart myslqd

 

명령어

'tasklist /V /FO TABLE' 명령어 실행

명령어 참고

https://estenpark.tistory.com/227

 


to Top