top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

MySQL doesn't start automatically on system boot

+1 vote
230 views

according to several webpages, once installed you can set the mysqld service enable and start automatically when fedora starts.

for that you must run:

systemctl enable mysqld.service
systemctl start mysqld.service

however in my case this only start mysqld service for the running time. Once computer is restarted, mysqld does not start automatically.

posted Jan 10, 2014 by Kiran Kumar

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+1 vote

I want to execute

ethtool -s wan0 advertise 00c

at system boot, before networking comes up. The only thing I can come up with is to throw a systemd service, WantedBy=basic.target.

But wondering if there isn't anything already that runs at system boot, whose purpose is something like that. Anyone know of a better way? rc-local.service runs after network.target, that's too late, here.

0 votes

I am running a fully patched Fedora 21 system. We are trying to give it a long term lease in the DHCP server, but the MAC address sent changes on every boot. The MAC address seen at the DHCP server is not actually valid.

The DHCP server is like Win2008 Server R2.

0 votes

When I open a new XFCE terminal, the window title is "terminal".

If I ssh to another computer via ssh mooch, the title changes to "sdstern@mooch:~" Typing "exit" to return to my desktop does not affect the window title.

Starting clean, "ssh -p 12345 linode.sterndata.com" does NOT change the window title.

Anyone know what's going on with XFCE Terminal?

Also, this is exactly the same thing I see if I use gnome-terminal instead, so this is probably a Works-As-Designed. Help me understand the design!

+6 votes

I have following requirement -
1. A graceful shutdown should run my stop script.
2. On boot I should able to start a program i.e. via script.
3. There should be a way to start and stop the program via script.

Any pointers.

...