2025-12-16 10:20:31 -07:00
|
|
|
# systemctl reload
|
|
|
|
|
|
|
|
|
|
> Reload a service's configuration without restarting it.
|
2026-02-18 06:55:01 -07:00
|
|
|
> This reloads the service itself (like Apache or `nginx` configs), not the systemd unit file.
|
2025-12-16 10:20:31 -07:00
|
|
|
> To reload unit files, use `systemctl daemon-reload`.
|
|
|
|
|
|
|
|
|
|
- Reload a service:
|
|
|
|
|
|
|
|
|
|
`systemctl reload {{nginx}}`
|
|
|
|
|
|
|
|
|
|
- Reload multiple services:
|
|
|
|
|
|
|
|
|
|
`systemctl reload {{unit1 unit2 ...}}`
|
|
|
|
|
|
|
|
|
|
- Reload a service for the current user:
|
|
|
|
|
|
|
|
|
|
`systemctl reload {{pipewire}} --user`
|