博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ssh各种错误集合
阅读量:5770 次
发布时间:2019-06-18

本文共 1015 字,大约阅读时间需要 3 分钟。

<1>

i174 .ssh # ssh 192.168.5.121

No RSA host key is known for 192.168.5.121 and you have requested strict checking.
Host key verification failed.

解决=>把/etc/ssh/ssh_config这项去掉!

# StrictHostKeyChecking yes

<2>Server refused to allocate pty错误解决

Server refused to allocate pty错误解决

    今天在启动虚拟机的时候,想从宿主机ssh到虚拟机,但是输入用户名

    与密码后,出现以下错误: Server refused to allocate pty

    在虚拟机中做如下操作可解决问题:

    mknod -m 666 /dev/ptmx c 5 2        

    #chmod 666 /dev/ptmx

    mkdir /dev/pts

    #编辑/etc/fstab,加入:

    none /dev/pts devpts  gid=5,mode=620 0 0          //"devpts"    is   fs_vfstype

    mount /dev/pts

附解释===>

mknod [OPTION]... NAME TYPE [MAJOR MINOR]

-m, --mode=MODE     set file permission bits to MODE, not a=rw - umask

Both MAJOR and MINOR must be specified when TYPE is b, c, or u, and they must be omitted when TYPE is p. If MAJOR or MINOR begins with 0x or 0X, it

is interpreted as hexadecimal; otherwise, if it begins with 0, as octal; otherwise, as decimal. TYPE may be:

b create a block (buffered) special file

c, u create a character (unbuffered) special file

p create a FIFO

转载地址:http://afiux.baihongyu.com/

你可能感兴趣的文章
一致性哈希
查看>>
mysql(待整理)
查看>>
看雪论坛502,出现安全宝?
查看>>
使用PullToRefresh实现下拉刷新和上拉加载
查看>>
mysql
查看>>
2012年电信业八大发展趋势
查看>>
Web日志安全分析工具 v2.0发布
查看>>
JS重载
查看>>
python2和python3同安装在Windows上,切换问题
查看>>
php加速工具xcache的安装与使用(基于LNMP环境)
查看>>
android超链接
查看>>
redhat tomcat
查看>>
统计数据库大小
查看>>
IO流的学习--文件夹下文件的复制
查看>>
第十六章:脚本化HTTP
查看>>
EXCEL表中如何让数值变成万元或亿元
查看>>
Cisco PIX防火墙的安装流程
查看>>
配置系列:ssm中applicationContext-mybatis.xml的简单配置
查看>>
mysql或者mariadb备份脚本
查看>>
extundelete恢复文件
查看>>