Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,26 @@ See [Getting started](#getting-started).
### "Port forwarding does not work"
Privileged ports (0-1023) cannot be forwarded. e.g., you have to use 8080, not 80.

### error "field SSHPubKeys must be set"

Make sure you have a ssh keypair in `~/.ssh`. To create:
```
ssh-keygen -q -t rsa -N '' -f ~/.ssh/id_rsa <<<n 2>&1 >/dev/null
```

### error "hostkeys_foreach failed: No such file or directory"
Make sure you have a ssh `known_hosts` file:
```
touch ~/.ssh/known_hosts
```

### error "failed to execute script ssh: [...] Permission denied (publickey)"
If you have a `~/.ssh/config` with a username overwrite for all hosts, exclude `127.0.0.1` from it. Example:
```
Host * !127.0.0.1
User root
```

### "Hints for debugging other problems?"
- Inspect logs:
- `limactl --debug start`
Expand Down