3. SSH 服务器安装
1.查看SSH是否安装(检查是否装了SSH包)
输入命令:rpm -qa | grep ssh
2.安装SSH 服务
yum install openssh-server
3.查看SSH服务是否正在运行。
输入命令:/etc/init.d/sshd status
4.service sshd start)命令开启SSH服务;停止SSH服务命令(service sshd stop)
重启SSH服务命令(service sshd restart)
5.查看启动22端口
netstat -antp | grep sshd 查看是否启动22端口]
6.检查SSHD是否在本运行级别下设置为开机启动
输入命令:chkconfig --list sshd
7.设置SSH服务为开机启动。
输入命令:chkconfig sshd on 即可。
注:若是chkconfig sshd off则禁止SSH开机启动。
7. 客户端
FinalShell
Mac一键安装脚本
curl -o finalshell_install.sh www.hostbuf.com/downloads/finalshell_install.sh;chmod +x finalshell_install.sh;sudo ./finalshell_install.sh