Chinaunix首页 | 论坛 | 博客
  • 博客访问: 245461
  • 博文数量: 33
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 480
  • 用 户 组: 普通用户
  • 注册时间: 2019-01-22 08:36
个人简介

专注虚拟化性能优化,硬件显卡网卡虚拟加速,面向容器的轻量虚拟化开发 永远的Linux Geeker!

文章分类

全部博文(33)

分类: LINUX

2019-01-25 02:08:59

作为后端开发人员或者运维人员, SSH 是必不可少的好帮手。下面将罗列一些常用的tips,以后也会陆续更新。


SSH welcome message modification

1. vim /etc/ssh/sshd_config

Change the setting PrintLastLog to "no"

Change the setting PermitRootLogin to "yes"

2. vim /etc/motd

    Change the content to what you want.

3. service sshd restart or  /etc/init.d/ssh restart


SSH login without password

1. generate local key

ssh-keygen

This will generate id_rsa.pub and id_rsa in ~/.ssh/

2. Copy public key to target machine

ssh-copy-id user@target

then it will login without passwd.

3. Sometimes you will need to login with root permission

vim /etc/ssh/sshd_config

Change "PermitRootLogin yes" 

4. Restart ssh service

/etc/init.d/ssh restart


Keep SSH Alive

Add the following line to the /etc/ssh/ssh_config file:

ServerAliveInterval 60

阅读(5051) | 评论(0) | 转发(0) |
0

上一篇:微虚机之gVisor

下一篇:Setup Pbuilder in Debian

给主人留下些什么吧!~~