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

Testing NFS Between Linux Server & Windows Client

On Linux server:1. Turn of selinux/ipchains/iptables during the test. This could be turned on at…

Installing Red5 on CentOS 5

I mostly work with Debian Etch 4 but the process would pretty much be the…

LAMPP: Change Apache Listening Port

Change Apache listening port:vim /opt/lampp/etc/httpd.confEdit line:Listen 80 (change to 8888)OPEN port 8888:vim /etc/sysconfig/iptables-A RH-Firewall-1-INPUT -m…