linux remote login way

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/qq_32067151/article/details/102745669

One way: by way of linux

Linux system is through ssh remote login service implementation, the default ssh service port number is 22.

Second way: Linux Telnet client has SecureCRT, Putty, SSH Secure Shell and so on Window system, this paper Putty example to login to the remote server.

supplement:

Install ssh:

yum install ssh

Start ssh:

service sshd start

Login remote server:

ssh -p 50022 [email protected] 
password: 
[email protected]:

-p  followed by port

my  server user name

127.0.0.1  is the server ip

Enter a password to log in

Guess you like

Origin blog.csdn.net/qq_32067151/article/details/102745669