14 lines
949 B
Markdown
14 lines
949 B
Markdown
- #IAM #keycloak #SelfHosted
|
|
- Running Keycloak in Proxmox Image doesn't work out of the box
|
|
- I had the same issue with running some RHEL 9 images in Podman on a Fedora Linux under Proxmox. RHEL 9 is checking this now for some reason.
|
|
The problem is caused by the underlying CPU architecture that Proxmox was telling Fedora that it had.
|
|
The problem was resolved very simply. When configuring the VM (or when the VM is in a stopped state) set the CPU architecture value to "host."
|
|
In Proxmox, if the machine is already provisioned you stop the server, open the Hardware setting, click Processors. Set the Type value to "host."
|
|
- Proxmox mount Client Partition (https://www.reddit.com/r/Proxmox/comments/e92mcz/can_i_access_vm_filesystem_from_the_host_shell/)
|
|
- ```
|
|
losetup --partscan /dev/loop0 /dev/zvol/tank/vms/vm-100-disk-1
|
|
fdisk -l /dev/loop0
|
|
mount /dev/loop0p2 /mnt
|
|
umount /mnt
|
|
losetup --detach /dev/loop0
|
|
``` |