본문 바로가기
728x90

시작441

gsjava 우분투 ssh포트 변경하기 #vi /etc/ssh/sshd_config Port 12345 서비스를 재시작 합니다. #service ssh restart 기존 열려있는것은 남겨두고 SSH 새로 열어서 잘되는지 확인 안되면 기존에 열어둔 SSH로 다시 수정 가능. 네트웍 수정 vi /etc/network/interfaces sudo ifdown eth0 && sudo ifup eth0 2021. 8. 30.
gsjava ssh 버전 차이로 인한 오류 no matching key exchange method found. Their offer: diffie-hellman-group14-sha1,diffie-hellman-group1-sha1 no matching host key type found. Their offer: ssh-dss 초치 방법 ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 -oHostKeyAlgorithms=+ssh-dss -c aes128-cbc root@192.168.8.109 2021. 8. 13.
gsjava Windows 10 새로운 기능 새로운 키[편집] 윈도우 10에 새로 도입된 키, 변경된 키는 다음과 같다. ⊞ Win+Tab ↹ : 멀티 데스크톱 화면 표시 Ctrl+⊞ Win+←또는→ : 멀티 데스크톱 화면 전환 Ctrl+⊞ Win+D : 새 데스크톱 Ctrl+⊞ Win+F4 : 현재 데스크톱 닫기 (단, 현재 실행 중인 프로그램은 다른 멀티 데스크톱 화면으로 전환된다.) 2021. 8. 7.
gsjava mysql marked as crashed and should be repaired. 복구시도 repair table 테이블명; 에러 확인 check table 테이블명; 접속 가능한 수 MariaDB [(none)]> SHOW VARIABLES LIKE '%max_connection%'; +-----------------------+-------+ | Variable_name | Value | +-----------------------+-------+ | extra_max_connections | 1 | | max_connections | 151 | +-----------------------+-------+ 2 rows in set (0.003 sec) 현재 접속수 MariaDB [(none)]> SHOW STATUS LIKE 'Threads_connected'; +---------.. 2021. 7. 19.
728x90