Summary of two problems encountered in configuring nfs and ftp services under fedora 16. For more information, see the source. for commercial purposes, contact me.
Http://blog.csdn.net/chinaye1/article/details/7047094
The error message for service vsftpd start is as follows:
Redirecting to/bin/systemctl start vsftpd. service Failed to issue method call: Unit vsftpd. service failed to load: No such file or directory. see system logs and 'systemctl status vsftpd. service 'for details.
Solution: the configuration of many services under fedora 16 has changed. The following command
$ Sudo systemctl enable vsftpd @. service
$ Sudo systemctl start vsftpd@vsftpd.service
Reference webpage
Http://ask.fedoraproject.org/question/242/unable-to-start-vsftpd-on-fedora-16
The nfs service is always not mounted when it is started, and many errors occur, as shown below:
When the nfs service is enabled, Failed to issue method call: Unit nfs. service failed to load: No such file or directory. See system logs and 'systemctl status nfs. service' for details.
Mount. nfs: Connection timed out
Clnt_create: RPC: Timed out
Solution: the configuration of many services under fedora 16 has changed. The following command
[Root @ tower20 ~] # Systemctl status nfs. service
Nfs. service
Loaded: error (Reason: No such file or directory)
Active: inactive (dead)
[Root @ tower20 ~] # Systemctl status nfs-server.service
Nfs-server.service-NFS server
Loaded: loaded (/lib/systemd/system/nfs-server.service; Disabled)
Active: inactive (dead)
Cgroup: Name = systemd:/system/nfs-server.service
[Root @ localhost System] # service nfs-Server start
Redirecting to/bin/systemctl start nfs-server.service
[Root @ localhost System] # systemctl status nfs-server.service
Nfs-server.service-NFS server
Loaded: loaded (/lib/systemd/system/nfs-server.service; Enabled)
Active: active (running) Since Tue, 06 Dec 2011 17:40:27 + 0800; 4S ago
The NFS service is enabled.
Then you can mount it normally.
Reference webpage
Http://forums.fedoraforum.org/archive/index.php/t-272648.html