<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<blockquote type="cite">
<pre>After upgrading to fedora 16, many of my old service won't start. I
don't see them in chkconfig --list either.
Namely, mysqld and httpd. I was able to manually start mysqld,
although I am not seeing how to autostart it with chkconfig. Httpd
says it is started when I look at the status, but I can't go to
mythweb or the apache test page.
Here is what is in chkconfig:
[<a href="http://www.mythtv.org/mailman/listinfo/mythtv-users">root at localhost</a> ~]# chkconfig --list
Note: This output shows SysV services only and does not include native
systemd services. SysV configuration data might be overridden by native
systemd configuration.
autofs 0:off 1:off 2:off 3:off 4:off 5:off 6:off
btseed 0:off 1:off 2:off 3:off 4:off 5:off 6:off
bttrack 0:off 1:off 2:off 3:off 4:off 5:off 6:off
dc_client 0:off 1:off 2:off 3:off 4:off 5:off 6:off
dc_server 0:off 1:off 2:off 3:off 4:off 5:off 6:off
denyhosts 0:off 1:off 2:off 3:off 4:off 5:off 6:off
lirc 0:off 1:off 2:on 3:on 4:on 5:on 6:off
mythbackend 0:off 1:off 2:on 3:on 4:on 5:on 6:off
netconsole 0:off 1:off 2:off 3:off 4:off 5:off 6:off
netfs 0:off 1:off 2:off 3:on 4:on 5:on 6:off
network 0:off 1:off 2:on 3:on 4:on 5:on 6:off
racoon 0:off 1:off 2:off 3:off 4:off 5:off 6:off
squeezeboxserver 0:off 1:off 2:off 3:on 4:on 5:on 6:off
xfs 0:off 1:off 2:off 3:off 4:off 5:off 6:off
Any help would be appreciated (and that really seems like a lot fewer
services than I had under Fedora 14).</pre>
</blockquote>
<br>
<blockquote type="cite">
<pre>Had the same issue. You need to use systemctl enable mysqld.service &
systemctl enable httpd (this will make them start at boot, you will see
a ln created when you do this) and systemctl start mysqld.service (to
start the process). Check the man page for systemctl for other options
(restart, status etc..). used systemctl --all to see all the services
(running or otherwise). Hope this helps.</pre>
</blockquote>
should be systemctl enable httpd.service. So basically systemctl
(option) (command) for anything you are missing and then they should
start working again.<br>
</body>
</html>