程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> ubuntu下ssh的應用

ubuntu下ssh的應用

編輯:JAVA綜合教程

ubuntu下ssh的應用


1 ssh遠程登錄服務器

ssh username@remote_ip #將username換成自己的用戶名,將remote_ip換成遠程服務器的ip地址

2將文件/文件夾從遠程服務器拷至本地(scp)
scp -r username@remote_ip:/home/username/remotefile.txt ./
3將文件/文件夾從本地拷至遠程服務器(scp)
scp -r localfile.txtusername@remote_ip:/home/username/
4將文件/文件夾從遠程服務器拷至本地(rsync)
rsync -v -u -a --delete --rsh=ssh –stats username@remote_ip:/home/username/remotefile.txt .
5將文件/文件夾從本地拷至遠程服務器(rsync)
rsync -v -u -a --delete --rsh=ssh --stats localfile.txtusername@remote_ip:/home/username/

6連接遠程ssh非22端口的服務器(ssh端口為12345)

ssh -p 12345 username@remote_ip

7遠程拷貝ssh非22端口的服務器文件(ssh端口為12345)

scp -P 12345 local_file username@remote_ip:remote_dir

scp -P 12345username@remote_ip:remote_filelocal_dir

scp -o port=12345username@remote_ip:remote_filelocal_dir

scp -P 12345 -rlocal_dir/.*username@remote_ip:remote_dir

拷貝目錄,-r是將目錄下的目錄遞歸拷貝。".*"是將隱藏文件也拷貝過去。需要先在遠端創建好相應的目錄。

sftp用法

sftp -o port=12345username@remote_ip:remote_dir


1. 首先在服務器上安裝ssh的服務器端。
$ sudo aptitude install openssh-server

2. 啟動ssh-server。
$ /etc/init.d/ssh restart

3. 確認ssh-server已經正常工作。
$netstat -tlp
tcp6 0 0 *:ssh *:* LISTEN -
看到上面這一行輸出說明ssh-server已經在運行了。

4. 在Ubuntu客戶端通過ssh登錄服務器。假設服務器的IP地址是192.168.0.103,登錄的用戶名是hyx。
$ ssh -l hyx 192.168.0.103
接下來會提示輸入密碼,然後就能成功登錄到服務器上了。


上傳文件:

用ssh自帶的scp或者sftp.
scp 本地文件 user@host:遠程路徑




原文鏈接

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved