cas@cas ~ $ sudo systemctl enable rpcbind.service [sudo] password for cas: Synchronizing state of rpcbind.service with SysV service script with /lib/systemd/systemd-sysv-install. Executing: /lib/systemd/systemd-sysv-install enable rpcbind Created symlink /etc/systemd/system/sockets.target.wants/rpcbind.socket → /lib/systemd/system/rpcbind.socket. после перезагрузки rpcbind.service не поднимается. Исправляем /lib/systemd/system/rpcbind.service: [Unit] Description=RPC bind service Requires=rpcbind.socket [Service] Type=forking EnvironmentFile=/etc/sysconfig/rpcbind ExecStart=/sbin/rpcbind -w $RPCBIND_ARGS Restart=always [Install] WantedBy=multi-user.target Also=rpcbind.socket После этого включает и .service: cas ~ # systemctl enable rpcbind.service Synchronizing state of rpcbind.service with SysV service script with /lib/systemd/systemd-sysv-install. Executing: /lib/systemd/systemd-sysv-install enable rpcbind Created symlink /etc/systemd/system/multi-user.target.wants/rpcbind.service → /lib/systemd/system/rpcbind.service.