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

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Running FreeIPA on Ubuntu Using Podman – Part 2: Step-by-...
Chanuth Abey · 2026-05-28 · via DEV Community

Chanuth Abeynayake

This is the full guide step by step implementation to launch, prepare and configure the FreeIPA server inside a Podman container.

Accessing the FreeIPA administrative web interface securely via HTTPS.

Accessing the FreeIPA administrative web interface securely via HTTPS

Step 1: Allow Web Ports
FreeIPA uses normal web ports such as 80 and 443. Sometimes, Linux does not allow normal container processes to use these ports directly, so allow the system to use ports starting from 80.

sudo sysctl -w net.ipv4.ip_unprivileged_port_start=80

Enter fullscreen mode Exit fullscreen mode

Step 2: Start the Container
FreeIPA needs some system services like LDAP and Kerberos, which systemd manages, so we start the container with systemd enabled.
So when we start the container, we must enable systemd inside it.

podman run -d --name freeipa-server \
  --systemd=always \
  --restart always \
  --cap-add=SYS_ADMIN \
  -p 443:443 -p 80:80 -p 389:389 -p 636:636 \
  -p 88:88 -p 464:464 -p 88:88/udp -p 464:464/udp \
  -h ipa.example.edu\
  almalinux:9 /usr/sbin/init

Enter fullscreen mode Exit fullscreen mode

In here,

  • --systemd=always allows systemd to run inside the container.
  • --restart always makes sure the container starts again after a reboot or crash.
  • The -p values open the ports needed by FreeIPA.

Step 3: Enter the Container
To install and configure FreeIPA it needs to go inside the running container.

podman exec -it freeipa-server /bin/bash

Enter fullscreen mode Exit fullscreen mode

Step 4: Prepare the Container
As said in the previous blog, the AlmaLinux image is very minimal. So for those missing folders and configuration files needed, it should be created those required folders, install packages, restore LDAP schema files, and set some security options

# 1. Install foundational packages
dnf install -y ipa-server ipa-server-dns

# 2. Reconstruct missing directory structures
rm -rf /etc/dirsrv /etc/sysconfig /etc/tmpfiles.d /etc/pkcs11
mkdir -p /etc/sysconfig /etc/tmpfiles.d /etc/pkcs11/modules /etc/dirsrv/config
mkdir -p /var/lib/ipa/sysrestore /var/lib/ipa-client/sysrestore /var/log/dirsrv

# 3. Restore missing LDAP schemas and configure cryptographic policies
dnf reinstall -y 389-ds-base --setopt=tsflags=noscripts --setopt=sslverify=false
echo "module: /usr/lib64/libsofthsm2.so" > /etc/pkcs11/modules/softhsm2.module
update-crypto-policies --set LEGACY

# 4. Generate necessary Kerberos configuration placeholders
touch /etc/sysconfig/krb5kdc /etc/sysconfig/kadmin
chmod 644 /etc/sysconfig/krb5kdc /etc/sysconfig/kadmin

# 5. Map local networking and identity alignment
MY_IP=$(hostname -I | awk '{print $1}')
echo -e "127.0.0.1\tlocalhost\n$MY_IP\tipa.example.edu ipa" > /etc/hosts

# 6. Set Java and Certificate Authority environment variables
export JAVA_OPTS="-Djava.security.egd=file:/dev/./urandom -Djava.net.preferIPv4Stack=true"
export NSS_SDB_USE_CACHE=yes

Enter fullscreen mode Exit fullscreen mode

Step 5: Install FreeIPA
Then the FreeIPA installer can be run in unattended mode as the container is now ready.

ipa-server-install \
  --unattended \
  --domain=example.edu \
  --realm=EXAMPLE.EDU \
  --ds-password=<YOUR_DS_PASSWORD> \
  --admin-password=<YOUR_ADMIN_PASSWORD> \
  --no-ntp \
  --no-host-dns \
  --no-pkinit \
  --skip-mem-check

Enter fullscreen mode Exit fullscreen mode

Replace YOUR_DS_PASSWORD and YOUR_ADMIN_PASSWORD with your own secure passwords.

Step 6: Access the Web Interface

Local Access

If the container is on a local system, add this line to the hosts file:

127.0.0.1 ipa.example.edu

Enter fullscreen mode Exit fullscreen mode

Then open the browser:

https://ipa.example.edu

Enter fullscreen mode Exit fullscreen mode

  • Username: admin
  • Password: YOUR_ADMIN_PASSWORD

Remote Access via SSH Tunnel

If the container is on a remote server, use an SSH tunnel:

ssh -L 443:localhost:443 -L 80:localhost:80 user@remote-server

Enter fullscreen mode Exit fullscreen mode

Then add the same hosts line locally and open the browser.

Step 7: Verify Setup

Inside the container, verify that FreeIPA and Kerberos are working:

kinit admin
ipa user-show admin

Enter fullscreen mode Exit fullscreen mode

Step 8: Make Port Change Permanent

The earlier port change will reset after a reboot. To keep it:

echo "net.ipv4.ip_unprivileged_port_start=80" | sudo tee -a /etc/sysctl.conf
sudo sysctl -p

Enter fullscreen mode Exit fullscreen mode

Checking FreeIPA Service Status
Checking FreeIPA Service Status

Testing Kerberos Authentication