1.首先編輯ssh配置
/etc/ssh/sshd_config
以下幾項必須要設定
(1)關閉dns反向解析
usedns no
(2)關閉ssh的gssapi認證
gssapiauthentication no
gssapicleanupcredentials no
(3)伺服器端向客戶端請求訊息60表示每分鐘傳送一次,最多發3次
clientaliveinterval 30
clientalivecountmax 3
2.重啟ssh
centos7
檢視狀態:
systemctl status sshd.service
啟動服務:
systemctl start sshd.service
重啟服務:
systemctl restart sshd.service
開機自啟:
systemctl enable sshd.service
centos6
service sshd restart
3.centos7 關閉網路管理器
systemctl stop network.service
4.如果還是不行,關閉伺服器網路連線,然後ping原伺服器ip,檢視ip是否被占用
CentOS 6 7 配置網路
1.路徑位置 vi etc sysconfig network scripts ifcfg eth0 ifcfg eth0則根據情況進行修改 2.網路配置 device ens33 驅動名稱 hwaddr 00 00 00 00 00 00 mac位址 type ethernet 網絡卡型別 uui...
centos6 7 搭建 redis集群
一,準備工作 二,建立redis使用者 useradd redis passwd redis 輸入密碼 三,安裝 1,建立redis安裝目錄 mkdir p usr local redis chown r redis.redis usr local redis 1,將redis安裝包上傳到 usr ...
CentOS6 7 常用操作命令
centos 安裝py環境 1.安裝wget工具 yum install wget 2.安裝python 2.7.8 wget no check certificate tar zxvf python 2.7.8.tgz cd python 2.7.8 configure prefix usr lo...