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 5 years have passed since last update.

【GCP】ゾーン間のVMインスタンスを接続

Last updated at Posted at 2020-02-18

VM作成

GCP Consoleで

Name: my-vm-1
Region: us-central1
Zone: us-central1-a
Boot disk: Debian GNU/Linux 9 (stretch)
Access scopes: Allow default access
Firewall: Allow HTTP traffic(受信HTTPトラフィックを許可します)

gcloud command で

リージョン指定
gcloud compute zones list | grep us-central1
ゾーン設定
gcloud config set compute/zone us-central1-b
VM作成

--machine-type "n1-standard-1" \
--image-project "debian-cloud" \
--image "debian-9-stretch-v20190213" \
--subnet "default"```
結果
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/501c2df9-1dc6-f49e-01e2-acce53dd1fd1.png)
my-vm-2
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/2f112bdd-a648-e073-0a48-25222c81c94d.png)

## Connect between VMインスタンス
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/672adf97-8e76-86b4-68d9-87a160b54a70.png)
ssh クリック
my-vm-1へ接続する為、次のコマンドを実行
`ssh my-vm-1`
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/92dc7378-de16-a345-90c6-6690f529d844.png)
my-vm-1インスタンスで Nguixウェブサーバーインストール
`sudo apt-get install nginx-light -y`
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/8e3fe790-fea1-5547-2ec6-f03687cfe595.png)
sudo nanoでindex.nginx-debian.htmlファイルを編集
`sudo nano /var/www/html/index.nginx-debian.html`
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/c738363d-4968-a006-baea-89bb5f71ac30.png)
保存して終了
Ctrl+O→Enter→Ctrl+X
my-vm-1提供するウェブサーバーを確認するコマンド
`curl http://localhost/`
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/365c884e-a154-57d9-7299-ed3453cbd630.png)
my-vm-1コマンドプロンプトを終了、次のコマンドを実行
`exit`
my-vm-2コマンドプロンプトへ戻る
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/79a5534d-9d56-1469-7b65-e624b7864295.png)
my-vm-2コマンドプロンプトでmy-vm-1のウェブサーバーに到達できる確認コマンド
`curl http://my-vm-1/`
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/165eaa6e-feb2-9a54-0c3f-531c0ccef661.png)
*http://my-vm-1/*
![image.png](https://qiita-image-store.s3.ap-northeast-1.amazonaws.com/0/581348/ac5ec022-22e2-ea7a-6dbc-6d1b3f51bf04.png)
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?