欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux start service 出现 no such file or directory error

程序员文章站 2022-03-08 19:27:21
...

linux start service 出现 no such file or directory error

但是,到/etc/init.d/xx: 里面会发现文件确实存在。

那么错误就是在文件里面出现了非法字符^M

 

使用vi /etc/init.d/xx:, 查看,会发现问题。

 

使用下面的语句可以解决


 

sudo sed -i -e 's/\r//g'  /etc/init.d/xx

然后再启动服务就可以了。