Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The solution to the failure of putty to log in to the Ubuntu system

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >

Share

Shulou(Shulou.com)06/01 Report--

Problem: I want to log in to Ubuntu with putty today, but I can't log in after entering the ip address and port number.

Reason: Ubuntu that wants to log in remotely does not have openssh-service installed

Solution: install openssh-service

Specific commands:

1. Installation

Ubuntu has openssh-client installed by default, so it will not be installed here. If your system is not installed, install it with apt-get.

Install ssh-server

Sudo apt-get install openssh-server

Install ssh-client

Sudo apt-get install openssh-client

two。 Confirm that sshserver is installed

Ps-e | grep sshd

450? 00:00:00 sshd

If you see sshd, it means ssh-server has been started.

If only ssh-agent indicates that ssh-server has not been started, you need to execute the command to start the ssh service:

/ etc/init.d/ssh start

Note: only sshd is displayed in the ubuntu-12.04-server-i386.iso installation:

3. Extended configuration

The default service port of SSH is 22, which you can define as another port, such as 222.The configuration file that needs to be modified is:

/ etc/ssh/sshd_config

Just change the Port parameter to 222in it.

Then restart the SSH service:

Sudo/etc/init.d/ssh restart

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Network Security

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report