0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

WSLでXserverにSSH接続する方法

Posted at

#Xserverーバーでsshの設定
[タイトル][1]
[1]:[1]:url
公開鍵認証用の鍵ペアを作成。秘密鍵fkumazemi.keyをダウンロード。
パスフレーズは忘れずメモ
#秘密鍵の設置

ダウンロードしたfkumazemi.keyを以下のコマンドで移動
.sshディレクトリの作成
ファイルの移動
$ mv ~/Downloads/fkumazemi.key ~/.ssh/
#秘密鍵のファイル名の変更

秘密鍵の名前を変更します。この時通常だとid_rsaとするのですが、
その他の秘密鍵もある場合は任意の名前を。今回はid_xserver_rsaで設定
.sshに移動
$cd ~/.ssh/
名前の変更
$mv fkumazemi.key id_xserver_rsa
#パーミッションの変更
.sshディレクトリと秘密鍵のパーミッションを変更。
$ chmod 700 ~/.ssh
$ chmod 600 ~/.ssh/id_xserver_rsa
#ログイン
以下のように記述
Host xserver #任意のコマンド名
HostName サーバーsv8288.xsrv.jp
Port 10022
User サーバーID
IdentityFile ~/.ssh/id_xserver_rsa #秘密鍵のファイル名
ServerAliveInterval 60 #sshの自動切断を防ぐために記述

これで以下コマンドでアクセスが可能
$ ssh xserver

#下記URLのお陰でWSLからXserverえのSSH接続が出来ました。感謝します。
[リンク][1]
[1]:[1]:[タイトル][1]
[1]:[1]:url
エックスサーバーにssh接続する方法(ターミナル利用

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?