美文网首页
centos7-使用中遇到的一些报错

centos7-使用中遇到的一些报错

作者: 有些路啊得一个人走 | 来源:发表于2017-11-04 10:17 被阅读26次

    1.没有netstat命令
    安装yum install net-tools -y

    1. 设置开机启用sshd服务
      不要chkconfig sshd on,已经过时
      :先要关闭SELinux,
      永久方法:修改/etc/selinux/config文件中设置SELINUX=disabled ,然后重启。
      临时方法:执行setenforce 0命令设置SELinux成为permissive模式

    需要使用 systemctl enable sshd.service设置开机使用。(其他服务开机自启类似,如systemctl enable docker.service)
    可以用 netstat -lntp查看已经启用的端口服务

    其他命令:
    systemctl start sshd.service
    systemctl stop sshd.service
    systemctl restart sshd.service

    1. 新增文件出现错误
      ".ssh/putty" E212: Can't open file for writing
      原因:没有写权限
      我的原因是:写入文件所在文件夹不存在

    相关文章

      网友评论

          本文标题:centos7-使用中遇到的一些报错

          本文链接:https://www.haomeiwen.com/subject/itkkuxtx.html