CentOS Stream 10
Sponsored Link

Initial Settings : Configure Services2024/12/16

 

To enable or disable services, Configure like follows.

[1] Display services list.
# the list of services that are active now

[root@dlp ~]#
systemctl -t service

  UNIT                                     LOAD   ACTIVE SUB     DESCRIPTION   >
  atd.service                              loaded active running Deferred execu>
  auditd.service                           loaded active running Security Audit>
  chronyd.service                          loaded active running NTP client/ser>
  crond.service                            loaded active running Command Schedu>
  dbus-broker.service                      loaded active running D-Bus System M>
  dracut-shutdown.service                  loaded active exited  Restore /run/i>
  firewalld.service                        loaded active running firewalld - dy>
  getty@tty1.service                       loaded active running Getty on tty1

.....
.....

  tuned.service                            loaded active running Dynamic System>
  user-runtime-dir@0.service               loaded active exited  User Runtime D>
  user@0.service                           loaded active running User Manager f>

Legend: LOAD   → Reflects whether the unit definition was properly loaded.
        ACTIVE → The high-level unit activation state, i.e. generalization of S>
        SUB    → The low-level unit activation state, values depend on unit typ>

44 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.

# list of all services

[root@dlp ~]#
systemctl list-unit-files -t service

UNIT FILE                                    STATE           PRESET
arp-ethers.service                           disabled        disabled
atd.service                                  enabled         enabled
audit-rules.service                          enabled         enabled
auditd.service                               enabled         enabled
autovt@.service                              alias           -
blk-availability.service                     disabled        disabled
bluetooth.service                            enabled         enabled
bolt.service                                 static          -
capsule@.service                             static          -
chrony-wait.service                          disabled        disabled
chronyd-restricted.service                   disabled        disabled
chronyd.service                              enabled         enabled

.....
.....

tuned.service                                enabled         enabled
udisks2.service                              enabled         enabled
user-runtime-dir@.service                    static          -
user@.service                                static          -

252 unit files listed.
[2] Stop and turn OFF auto-start setting for a service if you don'd need it.
For example, disable [nis-domainname] as an example below.
[root@dlp ~]#
systemctl stop nis-domainname

[root@dlp ~]#
systemctl disable nis-domainname
# to disable and stop with a command, run like follows

[root@dlp ~]#
systemctl disable --now nis-domainname
Matched Content