1
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.

Windows環境でVSCode + Remote - SSH + Cloud9 + SSMな環境の構築時にエラーで詰まった話

Posted at

構築内容

Cloud9でクラウド上に構築した開発環境にVSCodeから拡張機能を用いてSSH接続する。

何のためにやるのか、どういう利点があるのかは以下の記事がよくまとまっていますので割愛します。

基本手順

こちらの公式ブログ(英語)を元に進めました。

あくまで接続することが目的なので、途中の「Cloud9の自動停止機能をオフにする」部分はスキップしました。

詰まった点

クラウド上のリソースはCloudFormationのテンプレが用意されているので何一つこちらでやることもなく展開できましたが、肝心の接続部分で以下のようなエラーに遭遇し2時間ぐらい詰まりました。

...
[22:41:38.228] Terminal shell path: C:\Windows\System32\cmd.exe
[22:41:38.482] > ]0;C:\Windows\System32\cmd.exe
[22:41:38.482] Got some output, clearing connection timeout
[22:41:38.501] > CreateProcessW failed error:2
> posix_spawnp: No such file or directory
...

解決に至るまでの模索

結果だけ知りたい方は次のセクションまで飛ばして大丈夫です。

Windows特有のエラー

sshのProxyCommandで実行するshファイルを公開しているリポジトリを見てみると、Issueで全く同様の事象が報告されていました。

詳細はリンク先に譲ります。
結果的にはスクリプトを以下のように書き換えることで解決したそうです。

Host cloud9
    IdentityFile C:/Users/myusername/.ssh/id_rsa
    User ec2-user
    HostName i-XXXXXXXXXXXXXXXXXXX
    ProxyCommand aws ssm start-session --target %h --document-name AWS-StartSSHSession --parameters portNumber=%p

shファイルを実行するのではなく、aws cliのssmコマンドを直接呼び出していますね。
恐らくLinux/Macではそのまま動くんだと思いますが、シェルスクリプトの違いでWindowsではエラーになってしまう模様です。(詳しい事情までは知識不足もあり追えていません)
IssueでもWindows環境下で正常に動作するよう要望が投げられています。

リージョン指定をしていなかった

よっしゃこいつを参考に書き換えて成功…とはならず、別のエラーが発生しました。

[22:54:30.453] > ]0;C:\Windows\System32\cmd.exe
[22:54:30.453] Got some output, clearing connection timeout
[22:54:31.431] > 
[22:54:31.441] > An error occurred (TargetNotConnected) when calling the StartSession operation: 
> i-xxxxxxxxxxxxxxxxx is not connected.
[22:54:31.514] > kex_exchange_identification: Connection closed by remote host

aws cli ssmコマンドの実行自体は行われた上で、うまく接続できてないようです。
Host名見直したりインスタンス側の設定を見返したり色々さらったのですが、単純に「リージョン指定していなかった」というだけのことでした。

先にCloudFormationで展開していたリソースのリージョンはus-east-1、私のデフォルトリージョンはap-northeast-1。そりゃ見つかるわけがありません。

aws ssm start-session --region us-east-1 // 諸々省略

今度こそ接続成功しました。

ということで最終的な対応としては、以下の通りです。

解決

sshのconfigファイルを以下のように書き換えます。

~.ssh\config
Host cloud9
  HostName i-xxxxxxxxxxxxxxxxx
  IdentityFile C:/Users/${username}/.ssh/cloud9
  User ec2-user
  ProxyCommand aws ssm start-session --target %h --document-name AWS-StartSSHSession --parameters portNumber=%p --region us-east-1

繰り返しになりますがベースはあくまで公式手順にのっとったものです。
HostName、IdentityFileのパス、リージョン等、具体的な値は適宜読み替えてください。
また本稿は個人開発環境での私的な検証ですので、本番開発などでの適用は各自の責任で慎重に行ってください。

以上です。

直接役立った記事

参考にさせていただいた記事

1
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
1
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?