File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -214,6 +214,26 @@ See [Getting started](#getting-started).
214
214
### "Port forwarding does not work"
215
215
Privileged ports (0-1023) cannot be forwarded. e.g., you have to use 8080, not 80.
216
216
217
+ ### error "field SSHPubKeys must be set"
218
+
219
+ Make sure you have a ssh keypair in ` ~/.ssh ` . To create:
220
+ ```
221
+ ssh-keygen -q -t rsa -N '' -f ~/.ssh/id_rsa <<<n 2>&1 >/dev/null
222
+ ```
223
+
224
+ ### error "hostkeys_foreach failed: No such file or directory"
225
+ Make sure you have a ssh ` known_hosts ` file:
226
+ ```
227
+ touch ~/.ssh/known_hosts
228
+ ```
229
+
230
+ ### error "failed to execute script ssh: [ ...] Permission denied (publickey)"
231
+ If you have a ` ~/.ssh/config ` with a username overwrite for all hosts, exclude ` 127.0.0.1 ` from it. Example:
232
+ ```
233
+ Host * !127.0.0.1
234
+ User root
235
+ ```
236
+
217
237
### "Hints for debugging other problems?"
218
238
- Inspect logs:
219
239
- ` limactl --debug start `
You can’t perform that action at this time.
0 commit comments