Open main menu

CDOT Wiki β

Changes

OPS335 Lab 1

65 bytes added, 16:49, 15 January 2012
Managing services using systemd
service sshd start
Redirecting to /bin/systemctl start sshd.service
*Notice that your command was redirected to <code>'systemctl'</code>, the command executed was <code>'systemctl start sshd.service'</code>. Record this in your lab book.
*Enable sshd to start at boot
chkconfig sshd on
Note: Forwarding request to 'systemctl enable sshd.service'.
ln -s '/lib/systemd/system/sshd.service' '/etc/systemd/system/multi-user.target.wants/sshd.service'
*Again notice your command was redirected to <code>'systemctl'</code>, the command executed was <code>'systemctl enable sshd.service'</code>. A symbolic link was created as well, explain its purpose in your lab book.
*Install the virtualization software
yum groupinstall virtualization
*Start the libvirt daemon using <code>'systemctl'</code>
systemctl start libvirtd.service
*Enable libvirtd to start at boot using <code>'systemctl'</code>
systemctl enable libvirtd.service
libvirtd.service is not a native service, redirecting to /sbin/chkconfig.
1
edit