CentOS6.5下安装、配置并启动SSH远程访具体操作步骤:1.登录centos6.5系统,使用root用户;2.查看SSH是否安装(检查是否装了SSH包);输入命令:rpm-qa|grepssh.
前期准备
- CentOS6.5
- putty (windows下SSH远程访问工具)
CentOS6.5下安装、配置并启动SSH远程访具体操作步骤如下
1.登录centos6.5系统,使用root用户;
注:若为非root用户登录,输入执行某些命权限不够时需加sudo。
2.查看SSH是否安装
rpm -qa |grep ssh
3.安装SSH
yum install openssh-server
4.启动SSH服务
service sshd start #启动服务service sshd restart #重启SSH服务service sshd stop #停止服务
5.设置SSH服务为开机启动
chkconfig sshd on #SSH开机启动chkconfig sshd off #禁止SSH开机启动
putty远程访问连接Centos6.5系统
Windows下使用:putty、SecureCRT、xshell等远程连接SSH服务。我演示是使用的putty工具