1. 创建/etc/systemd/system/nfs-common.service

1. 创建/etc/systemd/system/nfs-common.service

在我的 Raspbian(基于 Debian Jessie)上,我需要在启动时启动rpcbindnfs-common服务,因为我需要它们autofs在启动时启动以进行 NFS 挂载。

由于 Debian Jessie 现在已转移到 Debian systemd,我想知道以正确的顺序启动这 3 个服务(rpcbind、nfs-commond、autofs)以避免出现问题的最佳方法。

如果我手动挂载 NFS 共享,它就可以工作。当使用 autofs 服务且 rpcbind 和 nfs-common 已启动并运行时,它也可以工作。

autofs 使用 systemd 单元脚本。关于其他 2 个服务,我应该制作 init.d 脚本还是必须创建 systemd 单元文件?我该如何写它们?

答案1

问题的原因是缺乏系统配置文件。基于一个马特·格兰特发表的文章这些debian-devel是您需要执行的步骤。

1. 创建/etc/systemd/system/nfs-common.service

cat >/etc/systemd/system/nfs-common.service <<\EOF
[Unit]
Description=NFS Common daemons
Wants=remote-fs-pre.target
DefaultDependencies=no

[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/etc/init.d/nfs-common start
ExecStop=/etc/init.d/nfs-common stop

[Install]
WantedBy=sysinit.target
EOF

2. 创建/etc/systemd/system/rpcbind.service

cat >/etc/systemd/system/rpcbind.service <<\EOF
[Unit]
Description=RPC bind portmap service
After=systemd-tmpfiles-setup.service
Wants=remote-fs-pre.target
Before=remote-fs-pre.target
DefaultDependencies=no

[Service]
ExecStart=/sbin/rpcbind -f -w
KillMode=process
Restart=on-failure

[Install]
WantedBy=sysinit.target
Alias=portmap
EOF

3.创建/etc/tmpfiles.d/rpcbind.conf

cat >/etc/tmpfiles.d/rpcbind.conf <<\EOF
#Type Path        Mode UID  GID  Age Argument
d     /run/rpcbind 0755 root root - -
f     /run/rpcbind/rpcbind.xdr 0600 root root - -
f     /run/rpcbind/portmap.xdr 0600 root root - -
EOF

4. 配置启动时运行的服务

systemctl enable rpcbind.service
systemctl enable nfs-common

相关内容