Posted On April 1, 2019

Fedora: Setting Programs to Automatically Start

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Fedora: Setting Programs to Automatically Start
on a fedora core box, use chkconfig like this:


Code:
chkconfig --level 345 httpd on
chkconfig --level 2345 mysqld on

you might also find this useful so you can get visual gratification after turning on services...


Code:
chkconfig --list
  • 0 — Halt
  • 1 — Single-user mode
  • 2 — Not used (user-definable)
  • 3 — Full multi-user mode
  • 4 — Not used (user-definable)
  • 5 — Full multi-user mode (with an X-based login screen)
  • 6 — Reboot

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Step by Step Kubernetes Application Hosting: Persistent Storage, Pod Creation, Deployment Plan, Service Clustering, and Ingress Routing

Overview Update: we have a new article which goes directly into a production-style setup of…

Useful Ubuntu Settings for VNC

# Disable screensaver Ubuntu (Gnome) gsettings set org.gnome.desktop.screensaver lock-enabled false # Purge screensaver and update…

VMware Virtual Disk Manager Does Not Expand Partitions

If you are using the VMware Virtual Disk Manager included in GSX Server, VMware Server,…