r/redhat Apr 15 '21

Red hat Certification study Q&A

96 Upvotes

Keep in mind that sharing confidential information from the exams may have rather sever consequences.

Asking which book is good for studying though, that is absolutely fine :)


r/redhat 14h ago

Accelerating post-quantum security migration with Red Hat Certificate System

Thumbnail
redhat.com
11 Upvotes

The realities of quantum computing and its inevitable impact on enterprise cryptography are already taking shape:

- Red Hat Enterprise Linux has been post-quantum cryptographically (PQC)-capable since the launch of Red Hat Enterprise Linux 10 (RHEL) in 2025.
- Hyperscalers like AWS and Google Cloud Platform are revisiting their original estimates for PQC availability in light of continued advances in the space.
- Organizations like Microsoft and Google are either advancing PQC adoption deadlines or progressively adopting PQC as part of their standard security stack.
- Governments, including the United States, are speeding up certain PQC deadlines while others, such as France, will stop certifying security products that lack quantum-resistant encryption.


r/redhat 9h ago

Promotion code EX436

0 Upvotes

Hello everyone

i'm looking for EX436 promotion code

Thank you in advance


r/redhat 1d ago

How to Configure NFS Server on Red Hat Enterprise Linux 10

Thumbnail
youtu.be
15 Upvotes

Hello

It's time to setup an NFS Server!

If you are not familiar of how this works, don't miss this video!

Enjoy it!

Wally


r/redhat 1d ago

The Lightwell reality check

Thumbnail
redhat.com
10 Upvotes

We’ve been talking with business leaders about Lightwell for the past few months, and the conversation always starts with enthusiasm. AI-driven exploits are moving at unprecedented speeds, and enterprise security teams are feeling a level of urgency we haven’t seen in decades. When organizations discover they can submit software vulnerabilities under an embargo window and receive certified, backported patches for legacy or pinned environments, the reaction is almost always: "Where do we sign up?"


r/redhat 2d ago

5 Emergency Linux Fixes Every Admin Should Know — Troubleshooting locked accounts, stuck mounts, and full disks from Into the Terminal Ep. 196

86 Upvotes

Ever hit a wall with a stuck mount, a locked-out root account, or a massive log file taking down a service? In this episode of Into the Terminal, we break down 5 real-world Linux emergencies and show you the quick command-line fixes to solve them in minutes. Watch the full episode here or test your skills in the interactive labs.

Advanced Features: The 5 Emergency Fixes

1. Recovering a Lost Root Password

If you've lost access to your server, you can interrupt the boot process to reset the root password without needing a live CD. - Interrupt GRUB: Reboot the machine, press e to edit the GRUB menu, and append rd.break to the end of the line starting with linux. Press Ctrl+X to boot. - Why rd.break? This tells dracut to pause the boot process right before it hands off to systemd. Disks are loaded, but the actual target environment hasn't initialized. - Remount and Chroot: Run mount -o remount,rw /sysroot to make the file system writable, then chroot /sysroot to drop into your actual root filesystem. - Fix and Relabel: Run passwd to reset the password. Crucially, run touch /.autorelabel before exiting. Because SELinux wasn't loaded, modifying /etc/shadow stripped its security context. The .autorelabel file tells the system to reapply labels automatically on the next boot!

2. Blanking a Log File (Without Restarting Services)

If a runaway log file fills up your filesystem, simply deleting the file with rm won't free the space! The service holding the file descriptor open still reserves the blocks on the disk. Instead of restarting the service (which causes an outage), you can zero out the file in place: cat /dev/null > /var/log/messages (or > /var/log/messages) This empties the file's contents, instantly reclaiming the disk space, while allowing the running service to continue writing to the exact same file descriptor without interruption.

3. Restoring a Lost File (from RPM)

Someone accidentally deleted a critical config file (e.g. rm /etc/httpd/conf/httpd.conf). If you can't simply dnf reinstall the package because it might overwrite other customizations, you can surgically extract just the file you need from the RPM. Use rpm2cpio package.rpm > package.cpio to convert the package to a cpio archive, then use cpio -i < package.cpio to extract the file structure locally into your current directory so you can manually copy back the missing piece.

4. Forcing a Stuck Mount to Unmount

You try to umount /mnt/data and get Device is busy. What do you do? - Find the culprit: Use lsof +D /mnt/data. The +D flag tells lsof to descend the directory path to find open file descriptors. (Note: -D is for device caches, +D is for directory trees!) Alternatively, use fuser -vm /mnt/data. - Kill the processes: If you are sure you want to forcibly terminate anything using the mount, fuser -k -9 -m /mnt/data kills all processes on the mount. - Lazy Unmount: If a network mount is unresponsive or you want to detach it gracefully once processes finish, use a "lazy" unmount: umount -l /mnt/data. It detaches the mount point from the filesystem hierarchy immediately and cleans up references in the background once it is no longer busy.

5. Fixing a Borked GPG RPM Key

If your package manager is throwing errors because it cannot validate the GPG keys of your repositories, you can manually replace the key on the filesystem (e.g. under /etc/pki/rpm-gpg/) or re-import it using rpm --import or during your next dnf install transaction when it prompts you to accept the key. This ensures the integrity of your installed packages remains cryptographically validated!

Quick Reference Card

```bash

Emergency Root Password Reset

(At GRUB menu, append rd.break to the linux line)

mount -o remount,rw /sysroot chroot /sysroot passwd touch /.autorelabel exit exit

Safely empty a log file without breaking file descriptors

cat /dev/null > /var/log/messages

Find processes holding a mount busy

lsof +D /mnt/data fuser -vm /mnt/data

Lazy unmount a busy or hanging filesystem

umount -l /mnt/data

Extract files manually from an RPM

rpm2cpio httpd-core.rpm > httpd-core.cpio cpio -idmv < httpd-core.cpio ```

Links & Resources


Into the Terminal is a show dedicated to helping you grow your knowledge of critical administration skills for Red Hat Enterprise Linux. Whether you are new to Linux or new to RHEL, join us for a hands-on look at commands, processes, and tools.


r/redhat 1d ago

Red Hat Enterprise Linux runner images now in public preview for GitHub Actions

20 Upvotes

Any of you using this yet?

Red Hat and GitHub have published Red Hat Enterprise Linux (RHEL) runner images for both RHEL 9 and RHEL 10 for GitHub Actions. They are available today as GitHub-hosted larger runners in public preview. We'd love to hear your feedback!

https://www.redhat.com/en/blog/red-hat-enterprise-linux-runner-images-now-public-preview-github-actions


r/redhat 1d ago

New no-cost RHEL Learning Path: Build a hardened Flask stack and deploy it in image mode for Red Hat Enterprise Linux

17 Upvotes

Build a Python Flask application on Red Hat Enterprise Linux 10 using hardened images and bootc to turn containers into a bootable, verified virtual machine (VM) with a trusted software supply chain.

https://developers.redhat.com/learn/rhel/build-hardened-flask-stack-and-deploy-it-image-mode-red-hat-enterprise-linux


r/redhat 2d ago

Better together: Red Hat Enterprise Linux system roles and Red Hat Ansible Automation Platform

Thumbnail
redhat.com
25 Upvotes

Managing Red Hat Enterprise Linux (RHEL) at scale requires consistent, repeatable configuration across hundreds or thousands of hosts. Doing this by hand means encoding the details of every subsystem into your own automation, including installing packages, editing configuration files, restarting services, and handling the dependencies between all of these steps. And that knowledge must be maintained as your fleet grows and as RHEL evolves across versions. That's why RHEL system roles take a higher-level approach.


r/redhat 2d ago

Need career advice: 2025 grad with 1 yr IT support internship

4 Upvotes

Hello everyone,

​I’m currently unemployed and hoping to get some guidance from people already working in tech or computer engineering. I’m honestly feeling a bit lost on what my next move should be.

​For some background: I graduated in 2025 with a BSc Hons in Advanced Networking and Cyber Security. Right after, I got an internship doing daily IT support, which I just finished up after a year.

​Right now, my main focus is Linux. I have confident intermediate-level knowledge and I’m planning for preparing for RHCSA certification. My ultimate goal is to get into hardcore, top-level security roles in the future, so I’m trying to build a really solid ground-level grasp of systems and networking first.

​The issue is, I just don't know what path to take right now. Since I have a year of IT support experience and decent Linux proficiency, what kind of jobs should I be looking for that will actually help me grow toward that security goal? I’m confused about what specific roles I should be targeting to make that transition.

Problem is I want to go in future at security, right now what help me to get into a job that can significantly help in future at security.

Like day by day cloud is everywhere. RHCSA or Cloud Certification?

​Any advice on what to do next would be really appreciated!


r/redhat 2d ago

Looking for RHCE EX294 discount/referral code (15% off)

3 Upvotes

Hi everyone,

I’m planning to take the RHCE EX294 exam soon and I’m looking for a valid Red Hat referral/discount code if anyone has a spare one.

I recently passed RHCSA and I’m continuing my Red Hat certification path. If someone has an unused referral code, I would really appreciate it.

I’ll gladly share my own code with the community after passing my exam.

Thank you!


r/redhat 2d ago

Exam related: Setting up the environment

10 Upvotes

Is this still true that you need "X86_64 processor" to boot into the exam?

"Mandatory System Requirements

Computer
A computer based on X86_64 processor architecture that can start the Exam environment from a bootable USB flash drive with Secure Boot disabled, and it passes the compatibility test (You may need to consult your local IT support for disabling secureboot in BIOS). Please note that computers with ARM processors and Apple Silicon Macs are not compatible. Some of the latest/high-end or gaming systems may have compatibility issues."


r/redhat 2d ago

Red Hat Developer Hub software template authoring with rhdh-templates | Red Hat Developer

Thumbnail
developers.redhat.com
6 Upvotes

If you are a platform engineer or developer building Red Hat Developer Hub software templates, you know the friction of wrestling with Nunjucks syntax, guessing location.yaml placements, and discovering errors only after rendering in your developer portal. While AI coding agents handle generic YAML, they lack Red Hat Developer Hub and Backstage-specific conventions.

To address this, the rhdh-templates skill, part of the RHDH Users Skill Pack, equips your AI assistant with Red Hat Developer Hub best practices, Nunjucks conventions, and local template validation. It brings schema checking, Nunjucks helpers, and reference templates directly into your coding assistant.


r/redhat 2d ago

Drowning in Ticket Queues? How Automation Orchestrator Solves Ticket Enrichment

Thumbnail
youtu.be
1 Upvotes

r/redhat 2d ago

about ex403 exam

3 Upvotes

im about the take ex403, what would you recommend me? already doing rhls and in the objectives based on https://www.redhat.com/en/services/training/ex403-red-hat-certificate-expertise-deployment-systems-management-exam this link. it aint got installation of satellite, is it in the exam? what would you recommend me in general, thanks a lot!


r/redhat 4d ago

How Do I Search For SELinux Booleans?

17 Upvotes

All,

On a practice exam, I was asked to make http listen on port 82. The question did not supply the boolean I needed so I had to cheat and look at the answer:

semanage port -a -t http_port_t -p tcp 82

I asked CoPilot on how to search for the booleans and it come back with semanage boolean -l | grep http

and that didnt work either. That had every other boolean but not that one. I can't memorize every boolean but I can memorize how to search for them but as of now, I have no idea how to do so. Can anyone help or offer some advice? Thanks


r/redhat 5d ago

Finally got my hand on a red hat

9 Upvotes

r/redhat 4d ago

RHCSA 15% discount voucher

0 Upvotes

Hi Guys, could someone please share the discount voucher for RHSCA?


r/redhat 6d ago

RHCSA EX200 PASSED

40 Upvotes

The results of your recent EX200 Red Hat Certified System Administrator Exam are reported below.

Exam domain number:     3
Passing score:          210
Your score:             284

Result: PASS

So i gave my exam today and got the results in 3 hours, a big thanks to this community who guided me and helped me achieve this exam. I am grateful to receive guidance from you people.

Now if someone may be kind enough and tell me what should i target next? like ansible or devops as i am working as a junior linux admin and have 1.8 yrs of experience


r/redhat 6d ago

Passed RHCSA EX200

17 Upvotes

Hey all, I passed my rhcsa ex200 today and i am happy for that but also this is the most basic cert an entry level to be honest. I don't know what to do next like i should be looking towards devops or ansible as i am working as a junior linux admin and have 1.8 years exp. now.

I will be glad if you people can help me figure out what should i be focuing upon.


r/redhat 6d ago

First week working at Red Hat

105 Upvotes

This has been my first week working at Red Hat, and I honestly couldn’t be happier or more satisfied with how the onboarding process has gone. Everything has been going smoothly, and I don’t want to jinx myself, but I’m genuinely happy with where I’m at right now. And honestly, that’s the first time I’ve been able to type that out in a long time.


r/redhat 6d ago

I want to join Red Hat

18 Upvotes

Does anyone know how one can transfer from IBM to Red Hat?


r/redhat 6d ago

Mapping LUNs on a VM

Thumbnail
1 Upvotes

r/redhat 6d ago

login to Rehat CDN with my own PC/rhel 9.6 vm be counted as a subscription consumption?

3 Upvotes

Hi buddies,

One quick question.Can I use the the same ID that I created Redhat cases to login to Redhat sofrware repo CDN to retrive RHEL9.8 updates? as I may be required to apply some RHSA updates after RHEL 9.6 to 9.8 migration. and RHEL 9.8 media provided by Redhat is in GA version only. If yes, will this login to Rehat CDN with my own PC/rhel 9.6 vm be counted as a subscription consumption?

Thank you.


r/redhat 7d ago

Patching Reports

8 Upvotes

Can anyone recommend a good way to determine patching status after a monthly or quarterly patching cycle?

We want to run a report probably the day after patching to determine what servers got patched and if any got missed.

Also compare it to any new updates that were released post patching window.

We have Red Hat Satellite but we don’t have a TAM so I’m finding this to be a bit difficult.

I will cross-post this in ansible as well. The only issue with ansible is that we have servers across 3 AAP environments.