From 3273037f3eb8743b66d2e86cce7e37f0d07c2a80 Mon Sep 17 00:00:00 2001 From: matze Date: Fri, 19 Jul 2024 17:44:44 +0200 Subject: [PATCH] [logseq-plugin-git:commit] 2024-07-19T15:44:44.459Z --- journals/2024_07_19.md | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/journals/2024_07_19.md b/journals/2024_07_19.md index 63f349c9..794c957f 100644 --- a/journals/2024_07_19.md +++ b/journals/2024_07_19.md @@ -1,8 +1,14 @@ - #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. + - 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." - ``` \ No newline at end of file +- 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 + ``` \ No newline at end of file