惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Vercel News
Vercel News
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
Last Week in AI
Last Week in AI
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
宝玉的分享
宝玉的分享
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队
WordPress大学
WordPress大学
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
罗磊的独立博客
The Cloudflare Blog
V
V2EX
月光博客
月光博客
有赞技术团队
有赞技术团队
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
GbyAI
GbyAI
博客园 - 【当耐特】
T
Tailwind CSS Blog

Proxmox Support Forum

[SOLVED] - Github Auth for Mirrors-Kernel Repo? [Automation] Mass migration tool for MS Win11/Server Proxmox GUI hang - not response is it possible to reject or quarantine spam based on conditions I set ? The PVENode task list in PVE9 is partially obscured due to the terminal font being too large. About 100% error reporting due to pveproxy.service hooks Kubernetes overlay networking breaks when upgrading from PVE 9.1 to PVE 9.2.3 Zentraler Speicher No space left on device Combine datastore and direct file archival to tape Kernel panic VFS: Unable to mount root fs on unknown-block (0,0) sobald ein 7.x Kernel verwendet wird. How to migrate disk of a VM from one ZFS to another Windows Server 2025 fails to boot after PVE 9.2 / Linux 7.0 Kernel upgrade Cannot Install Proxmox on T610 Poweredge with H700 PERC card sdn Config. gateway not reachable How to safely change domain/FQDN? Welche Filterquote erreicht ihr? NFS Share status unknown on 2 of 5 nodes Can't connect to PVE9 consoles [solved] Can't connect to PVE9 consoles [solved] [SOLVED] - Use secondary network for PVE commands Created cluster, one node storage gone BUG: proxmox mail gateway FROM = null bypass spam filtering Moving existing PBS from VMWare workstation to PVE cluster Does eBGP SDN fabric support external peering? Bug: PDM 1.1 not recognizing valid license status Proxmox GUI hang - not response PVE crashes unexpectedly Proxmox Backup Server 4.2 released! Advice
Security enhanced PMG cannot join cluster
invalid@exam · 2026-06-27 · via Proxmox Support Forum

I am behind developpment of security enhanced linux script "el_scripts", which include an OpenSCAP profile setup for machines (in my case I use ANSSI-BP-028-High security profile.
Having applied my securitry enhancements to PMG 9.x, I couldn't setup a cluster anymore with the following error:
```
copying master database finished (got 184169 bytes)
delete local database
create new local database
GRANT
GRANT
GRANT
GRANT
insert received data into local database
cluster join failed: postgres_admin_cmd failed: pg_restore failed: pg_restore: error: could not open input file "/tmp/masterdb2717.tar": Permission denied
```

This happened since /tmp umask created masterdbxxxx.tar file with permissons 600.
In order to make thinks work, I modified `/usr/share/perl5/PMG/DBTools.pm` by adding the following on line 1380:
```
my $ocmd = ['/usr/bin/chmod', '644', $fn,];
PVE::Tools::run_command($ocmd);
```

With this, I could join the cluster.
Would it make sense to the Proxmox team to add the above modification, since the file is unlinked after import anyway ?

Btw, also made the following mods for PMG to work with secure setup:
- set `AllowTcpForwarding yes` again
- Configured firewall to allow all ports from PMG cluster members via `ufw allow from <ip autres membres cluster>`
- Install apparmor-utils via `apt install apparmor-utils`
- Run aa-logprof to allow clamav working properly

Cheers.