Changes between Version 7 and Version 8 of SystemAdministration/Centos


Ignore:
Timestamp:
04/21/17 07:46:19 (7 years ago)
Author:
Willem Elbers
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SystemAdministration/Centos

    v7 v8  
    11== Updating ==
    2 Before updating check the https://trac.clarin.eu/wiki/SystemAdministration#Updates table for any pending updates which '''must''' be included.
     2Before updating check the https://trac.clarin.eu/wiki/SystemAdministration#Updates table for any pending updates which '''must''' be included.
    33
    44Update cache:
     
    3333
    3434== SELinux ==
    35 <to be filled in>
     35
     36=== Searching audit log ===
     37
     38Check for any denials:
     39{{{
     40ausearch -m avc                              #all denials       
     41ausearch -m avc -ts today              #denials for that today 
     42ausearch -m avc -ts recent             #denials from the last 10 minutes       
     43}}}
     44
     45Check entries for a specific service:
     46{{{
     47ausearch -c docker                      #all audit entries for the docker service
     48ausearch -m avc -c docker          #all denials for the docker service
     49}}}
     50
     51Reference: !https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/6/html/Security-Enhanced_Linux/sect-Security-Enhanced_Linux-Fixing_Problems-Searching_For_and_Viewing_Denials.html