SELinux Avc Denied Add for Service Fedora 39 Troubleshooting Guide

September 16, 2023 | By the+gnu+linux+evangelist.

Solving SELinux Avc Denied Add for Service in Fedora 39

Hi! This Guide Try to Solve SELinux Avc Denial for Service in Fedora 39 GNU/Linux.

And semanage is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.

The restorecon command is the most popular and preferred way of modifying the SELinux context of a file or directory.

SELinux Avc Denied Add for Service Fedora 39 Troubleshooting Guide - Featured
  1. Fixing System

    Then to Solve SELinux Avc Denied Add for Service in Fedora 39
    First, possibly to find the Service Target:

    journalctl -xe
    And again:

    sudo systemctl status [MYSERVICE]
    If it’s running Stop it:
    sudo systemctl stop [MYSERVICE]
    Then run:
    sudo semanage fcontext -a -t bin_t "[PATH2TARGETSERVICEDIR](/.*)?"
    semanage is used to configure certain elements of SELinux policy without requiring modification to or recompilation from policy sources.
    And again:
    restorecon -r -v [PATH2TARGETSERVICEDIR]
    The restorecon command is the most popular and preferred way of modifying the SELinux context of a file or directory.
    Last, Start it again with:
    sudo systemctl start [MYSERVICE]
  2. Thanks to: serverfault.com/questions/1032597

QuickChic Theme • Powered by WordPress