質問編集履歴

5

vagrant destroy

2020/02/06 12:52

投稿

Katsuma-F
Katsuma-F

スコア6

test CHANGED
File without changes
test CHANGED
@@ -277,3 +277,9 @@
277
277
  ssh_exchange_identification: read: Connection reset by peer
278
278
 
279
279
  ```
280
+
281
+ ---
282
+
283
+
284
+
285
+ 最終的には```vagrant destroy```をして、環境を再構築することになりました。

4

-iオプションを付けた場合

2020/02/06 12:52

投稿

Katsuma-F
Katsuma-F

スコア6

test CHANGED
File without changes
test CHANGED
@@ -241,3 +241,39 @@
241
241
  ssh_exchange_identification: read: Connection reset by peer
242
242
 
243
243
  ```
244
+
245
+ -iオプションを付けた場合
246
+
247
+ ```
248
+
249
+ MacBook-Pro:MyCentOS ユーザー名$ ssh -vvv vagrant@localhost -p 2222 -i .vagrant/machines/default/virtualbox/private_key
250
+
251
+ OpenSSH_7.9p1, LibreSSL 2.7.3
252
+
253
+ debug1: Reading configuration data /Users/ユーザー名/.ssh/config
254
+
255
+ debug1: Reading configuration data /etc/ssh/ssh_config
256
+
257
+ debug1: /etc/ssh/ssh_config line 48: Applying options for *
258
+
259
+ debug2: resolving "localhost" port 2222
260
+
261
+ debug2: ssh_connect_direct
262
+
263
+ debug1: Connecting to localhost [::1] port 2222.
264
+
265
+ debug1: connect to address ::1 port 2222: Connection refused
266
+
267
+ debug1: Connecting to localhost [127.0.0.1] port 2222.
268
+
269
+ debug1: Connection established.
270
+
271
+ debug1: identity file .vagrant/machines/default/virtualbox/private_key type -1
272
+
273
+ debug1: identity file .vagrant/machines/default/virtualbox/private_key-cert type -1
274
+
275
+ debug1: Local version string SSH-2.0-OpenSSH_7.9
276
+
277
+ ssh_exchange_identification: read: Connection reset by peer
278
+
279
+ ```

3

デバッグのコマンドによる表示内容

2020/02/06 03:48

投稿

Katsuma-F
Katsuma-F

スコア6

test CHANGED
File without changes
test CHANGED
@@ -181,3 +181,63 @@
181
181
  これは、作成したpublic_keyファイルを /Users/ユーザー名/MyVagrant/MyCentOS/.ssh/ に配置&上書きすることなのではないかと下記のQiitaの記事を読んで自分なりに推測していますが、ご指摘のほどよろしくお願い申し上げます。
182
182
 
183
183
  [VagrantでSSH鍵の設定 - [Authentication failure. Retrying…]の対処策](https://qiita.com/Esfahan/items/e5f707dc6d116c2cc751)
184
+
185
+
186
+
187
+
188
+
189
+ ---
190
+
191
+
192
+
193
+ ---
194
+
195
+ ```
196
+
197
+ MacBook-Pro:MyCentOS ユーザー名$ ssh -vvv vagrant@localhost -p 2222 .vagrant/machines/default/virtualbox/private_key
198
+
199
+ OpenSSH_7.9p1, LibreSSL 2.7.3
200
+
201
+ debug1: Reading configuration data /Users/ユーザー名/.ssh/config
202
+
203
+ debug1: Reading configuration data /etc/ssh/ssh_config
204
+
205
+ debug1: /etc/ssh/ssh_config line 48: Applying options for *
206
+
207
+ debug2: resolving "localhost" port 2222
208
+
209
+ debug2: ssh_connect_direct
210
+
211
+ debug1: Connecting to localhost [::1] port 2222.
212
+
213
+ debug1: connect to address ::1 port 2222: Connection refused
214
+
215
+ debug1: Connecting to localhost [127.0.0.1] port 2222.
216
+
217
+ debug1: Connection established.
218
+
219
+ debug1: identity file /Users/ユーザー名/.ssh/id_rsa type 0
220
+
221
+ debug1: identity file /Users/ユ/.ssh/id_rsa-cert type -1
222
+
223
+ debug1: identity file /Users/ユ/.ssh/id_dsa type -1
224
+
225
+ debug1: identity file /Users/ユ/.ssh/id_dsa-cert type -1
226
+
227
+ debug1: identity file /Users/ユ/.ssh/id_ecdsa type -1
228
+
229
+ debug1: identity file /Users/ユ/.ssh/id_ecdsa-cert type -1
230
+
231
+ debug1: identity file /Users/ユ/.ssh/id_ed25519 type -1
232
+
233
+ debug1: identity file /Users/ユ/.ssh/id_ed25519-cert type -1
234
+
235
+ debug1: identity file /Users/ユ/.ssh/id_xmss type -1
236
+
237
+ debug1: identity file /Users/ユ/.ssh/id_xmss-cert type -1
238
+
239
+ debug1: Local version string SSH-2.0-OpenSSH_7.9
240
+
241
+ ssh_exchange_identification: read: Connection reset by peer
242
+
243
+ ```

2

誤字を修正

2020/02/04 13:27

投稿

Katsuma-F
Katsuma-F

スコア6

test CHANGED
File without changes
test CHANGED
@@ -174,7 +174,7 @@
174
174
 
175
175
  ```
176
176
 
177
- 上記のコマンドは、作成した秘密鍵から作成した公開鍵を具体的にどうすることなのでしょうか?
177
+ 上記のコマンドは、秘密鍵から作成した公開鍵を具体的にどうすることなのでしょうか?
178
178
 
179
179
 
180
180
 

1

上手くアップできなかったので更新しました。

2020/02/03 13:03

投稿

Katsuma-F
Katsuma-F

スコア6

test CHANGED
File without changes
test CHANGED
@@ -9,6 +9,22 @@
9
9
  /Users/ユーザー名/MyVagrant/MyCentOS
10
10
 
11
11
  「MyCentOS」というフォルダ上で vagrant コマンドを実行しています。
12
+
13
+ ```Vagrant
14
+
15
+ MacBook-Pro:.ssh ユーザー名$ pwd
16
+
17
+ /Users/ユーザー名/MyVagrant/MyCentOS/.ssh
18
+
19
+ MacBook-Pro:.ssh ユーザー名$ ls -la
20
+
21
+ total 0
22
+
23
+ drwxr-xr-x 2 ユーザー名 staff 64 1 27 19:56 .
24
+
25
+ drwxr-xr-x 14 ユーザー名 staff 448 2 3 21:35 ..
26
+
27
+ ```
12
28
 
13
29
  #### 環境
14
30
 
@@ -90,6 +106,30 @@
90
106
 
91
107
  ```
92
108
 
109
+ vagrant up ができているか確認
110
+
111
+ ```Vagrant
112
+
113
+ MacBook-Pro:MyCentOS ユーザー名$ vagrant status
114
+
115
+ Current machine states:
116
+
117
+
118
+
119
+ default running (virtualbox)
120
+
121
+
122
+
123
+ The VM is running. To stop this VM, you can run `vagrant halt` to
124
+
125
+ shut it down forcefully, or you can run `vagrant suspend` to simply
126
+
127
+ suspend the virtual machine. In either case, to restart it again,
128
+
129
+ simply run `vagrant up`.
130
+
131
+ ```
132
+
93
133
  この直後に vagrant ssh をすると、
94
134
 
95
135
  ```Vagrant
@@ -108,7 +148,7 @@
108
148
 
109
149
  [vagrant upでprivate keyより先に進まない症状](http://tauplank.hatenablog.com/entry/2016/10/23/153728)
110
150
 
111
- しかし、理解できないことが2つあります。
151
+ しかし、理解できないことが2つあるので教えていただきたいです。
112
152
 
113
153
  記事中の、
114
154
 
@@ -122,7 +162,7 @@
122
162
 
123
163
  ```
124
164
 
125
- とは、直前で作成したpublic_keyというファイルをMyVagrant/ に貼り付けるという作業で間違いないでしょうか?
165
+ とは、直前で作成したpublic_keyというファイルをMyVagrant/ に貼り付けるという作業で間違いないでしょうか?
126
166
 
127
167
 
128
168
 
@@ -138,6 +178,6 @@
138
178
 
139
179
 
140
180
 
141
- また下記のサイトを参考にパブリックキーファイルの中身に先ほど作成した公開鍵ファイルの内容上書きするとvagrant sshが成功するのでしょうか?
181
+ これは、作成したpublic_keyファイルを /Users/ユーザー名/MyVagrant/MyCentOS/.ssh/ に配置&上書きすることなのではないかと下記のQiitaの記事を読んで自分なりに推測ていますが、ご指摘のほどよろしくお願い申し上げます。
142
182
 
143
183
  [VagrantでSSH鍵の設定 - [Authentication failure. Retrying…]の対処策](https://qiita.com/Esfahan/items/e5f707dc6d116c2cc751)