質問編集履歴
1
前提・解決したいこと・問題発生の流れを記載しました ほかにも抽象的になっている部分があれば教えて下さい
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,20 @@
|
|
1
|
+
●前提
|
2
|
+
|
3
|
+
ruby 2.5.7p206
|
4
|
+
|
5
|
+
Rails 5.2.3
|
6
|
+
|
7
|
+
windows10
|
8
|
+
|
9
|
+
バージョン管理システム uru
|
10
|
+
|
11
|
+
コンソール
|
12
|
+
|
13
|
+
Start Command Pronpt with Ruby
|
14
|
+
|
15
|
+
|
16
|
+
|
1
|
-
解決したいこと
|
17
|
+
●解決したいこと
|
2
18
|
|
3
19
|
cat /home/Users/myname/.ssh/id_rsa.pubでssh-key(公開鍵)を出力したい。
|
4
20
|
|
@@ -15,3 +31,63 @@
|
|
15
31
|
|
16
32
|
|
17
33
|
と出る。
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
●問題が発生するまでの流れ・手順
|
38
|
+
|
39
|
+
rails tutorial 1.4.3BitbucketでBitbucketを
|
40
|
+
|
41
|
+
利用するためアカウントを作り、
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
ssh-keyを作成
|
46
|
+
|
47
|
+
その際のコード
|
48
|
+
|
49
|
+
ssh-keygen
|
50
|
+
|
51
|
+
Generating public/private rsa key pair.
|
52
|
+
|
53
|
+
Enter file in which to save the key (C:\Users\myname/.ssh/id_rsa):
|
54
|
+
|
55
|
+
C:\Users\myname/.ssh/id_rsa already exists.
|
56
|
+
|
57
|
+
Overwrite (y/n)? y
|
58
|
+
|
59
|
+
Enter passphrase (empty for no passphrase):
|
60
|
+
|
61
|
+
Enter same passphrase again:
|
62
|
+
|
63
|
+
Your identification has been saved in C:\Users\myname/.ssh/id_rsa.
|
64
|
+
|
65
|
+
Your public key has been saved in C:\Users\myname/.ssh/id_rsa.pub.
|
66
|
+
|
67
|
+
The key fingerprint is:
|
68
|
+
|
69
|
+
SHA256:91CkIghTl1NdBaCA2TM7NuyxI3BVPDfa0f+63tSLYnY myname@DESKTOP-G9F54N5
|
70
|
+
|
71
|
+
The key's randomart image is:
|
72
|
+
|
73
|
+
+---[RSA 2048]----+
|
74
|
+
|
75
|
+
| o..+o=o..++o. |
|
76
|
+
|
77
|
+
| oooB.o.=o. |
|
78
|
+
|
79
|
+
| .o.=o=.o.. |
|
80
|
+
|
81
|
+
| . . B..... . |
|
82
|
+
|
83
|
+
| o o =S o . |
|
84
|
+
|
85
|
+
| . + . o o|
|
86
|
+
|
87
|
+
| . . . .o|
|
88
|
+
|
89
|
+
| + Eoo.|
|
90
|
+
|
91
|
+
| o oooo.|
|
92
|
+
|
93
|
+
+----[SHA256]-----+
|