ibm-apiconnect / v2018-postmortem

Log collection tool for API Connect v2018.
Apache License 2.0
0 stars 6 forks source link

Missing ssh Argument in ova Deployment #3

Closed danchirillo closed 5 years ago

danchirillo commented 5 years ago

Step #1 in the ova deployment instructions is incomplete. In order to ssh to the device, the apicadm user ID must be passed. If it isn't, a permission denied( public key) error will be returned. The instruction should be: ssh apicadm@{ova appliance hostname} -l apicadm

nitekon1 commented 5 years ago

While the command: ssh apicadm@{hostname}

is not incorrect, some distributions may have issues with this syntax. Updated to: ssh {hostname} -l apicadm

danchirillo commented 5 years ago

I take this issue back. When reading the instructions, my eyes completely missed apicadm@; I read the ssh command it as ssh {ova appliance hostname}, which is why I indicated in the issue description that the apicadm user ID needs to be passed.