In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >
Share
Shulou(Shulou.com)06/01 Report--
This article is to share with you about the python paramiko module management SSH example analysis, the editor thinks it is very practical, so share it with you to learn, hope you can get something after reading this article, say no more, follow the editor to have a look.
Here are two types of code that uses paramiko to connect to a linux server
Method 1:
Ssh = paramiko.SSHClient ()
Ssh.set_missing_host_key_policy (paramiko.AutoAddPolicy ())
Ssh.connect ("some IP address", 22, "user name", "password")
The second line of code above allows you to connect to hosts that are not in the know_hosts file
Method 2:
T = paramiko.Transport (("host", "port"))
T.connect (username = "user name", password = "password")
If you need to provide a key to connect to the remote host, the second line of code can be changed to:
T.connect (username = "user name", password = "password", hostkey= "key")
Example:
#! / usr/bin/python
Import paramiko
Ssh = paramiko.SSHClient ()
Ssh.set_missing_host_key_policy (paramiko.AutoAddPolicy ())
Ssh.connect ("some IP address", 22, "user name", "password")
Stdin, stdout, stderr = ssh.exec_command ("your command") print stdout.readlines ()
Ssh.close ()
Download files on the linux server
#! / usr/bin/python
Import paramiko
T = paramiko.Transport (("host", "port"))
T.connect (username = "user name", password = "password")
Sftp = paramiko.SFTPClient.from_transport (t)
Remotepath='/var/log/system.log'
Localpath='/tmp/system.log'
Sftp.get (remotepath, localpath)
T.close ()
Upload files to the linux server
#! / usr/bin/python
Import paramiko
T = paramiko.Transport (("host", "port"))
T.connect (username = "user name", password = "password")
Sftp = paramiko.SFTPClient.from_transport (t)
Remotepath='/var/log/system.log'
Localpath='/tmp/system.log'
Sftp.put (localpath,remotepath)
T.close ()
The above is an example analysis of the python paramiko module managing SSH. The editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.