CentOS 8中 Failed to enable unit: Unit file corda.service does not exist.
背景
部署一个节点服务网,用到了linux自带的 systemctl 服务
问题: 无法加载节点服务
# sudo systemctl enable corda.service
Failed to enable unit: Unit file corda.service does not exist.
解决方式:
nmcli c reload
结果
[root@hostsystem]# sudo systemctl enable corda.service
Created symlink /etc/systemd/system/multi-user.target.wants/corda.service → /etc/systemd/system/corda.service.
在CentOS8系统中部署节点服务时遇到了无法通过systemctl启用corda.service的问题。错误信息提示Unit文件不存在。通过运行'nmclic reload'命令后,成功创建了symlink,并解决了问题,现在能够正常启用corda服务。
8719

被折叠的 条评论
为什么被折叠?



