ssh 传输中断 , 报错 “Write failed: Broken pipe” 解决办法: //编辑文件: 1vi /etc/ssh/sshd_config //在内容末尾添加如下语句: 1ClientAliveInterval 60 //保存后重启服务: 1systemctl restart sshd.service 如果crontab有设置每小时重启 也需要关闭
Category Archives: SSH
21 ssh命令详解 1-1. 查看是否已安装服务openssh 1rpm -qa | grep openssh 1-2. 查看是否已安装服务openssh-server 1rpm -qa | grep openssh-server 1-3. 查看是否已安装服务openssh-clients 1rpm -qa | grep openssh-clients 2-1. 安装 openssh 1yum install -y openssh 2-2. 安装 openssh-server 1yum install -y openssh-server 2-3. 安装 openssh-clients 1yum install -y openssh-clients 3-1. 查看服务状态sshd 1systemctl status sshd.service 3-2. 启动服务sshd 1systemctl start sshd.service 3-3. […]
19 sshd_config文件中的配置参数-中 123https://blog.csdn.net/linghe301/article/details/8211305 https://www.cnblogs.com/xiaogan/p/5902846.html http://www.jinbuguo.com/openssh/sshd_config.html 15-1. X11 转发 – 允许 – 默认 1X11Forwarding yes 15-2. X11 转发 – 禁止 1X11Forwarding no 16-1. 指定 sshd(8) X11 转发的第一个可用的显示区(display)数字。默认值是 10 这个可以用于防止 sshd 占用了真实的 X11 服务器显示区,从而发生混淆 1X11DisplayOffset 10 17-1. 将X11转发服务器绑定到本地loopback地址 – 是 – 默认 1X11UseLocalhost yes 17-2. 将X11转发服务器绑定到本地loopback地址 – 否 1X11UseLocalhost no 18-1. 允许TTY – 允许 – 默认 1PermitTTY […]
18 sshd_config文件中的配置参数-上 123https://blog.csdn.net/linghe301/article/details/8211305 https://www.cnblogs.com/xiaogan/p/5902846.html http://www.jinbuguo.com/openssh/sshd_config.html 1. 新建一个新的用户test,把它提升为root级别管理员 1-1. 创建test账号 1useradd test 1-2. 设置test账号密码 1passwd test 1-3. 提升root级别权限 找到配置文件 1vi /etc/sudoers 修改配置文件 12root ALL=(ALL) ALL test ALL=(ALL) ALL //增加这行 2. 禁止SSH root用户的登录 2-1. 打开配置文件 1vi /etc/ssh/sshd_config 2-2. 修改配置文件——-禁止SSH root用户的登录 1PermitRootLogin no 2-3. 修改配置文件——-启动SSH root用户的登录 1PermitRootLogin yes 2-4. 修改配置文件——-只允许用户:test通SSH方式登录,别的账户都禁止 1AllowUsers test 2-5. 重启sshd生效 1systemctl […]