系统服务失败,

系统服务失败,
● eip.service - making eip connection up
   Loaded: loaded (/etc/systemd/system/eip.service; enabled; vendor preset: disabled)
   Active: failed (Result: exit-code) since Wed 2021-08-25 21:21:24 CDT; 7min ago
  Process: 244843 ExecStart=/home/svceip/scripts/startstop/start_eip (code=exited, status=203/EXEC)
 Main PID: 244843 (code=exited, status=203/EXEC)

Aug 25 21:21:24 systemd[1]: Started making eip connection up.
Aug 25 21:21:24 systemd[1]: eip.service: Main process exited, code=exited, status=203/EXEC
Aug 25 21:21:24 systemd[1]: eip.service: Failed with result 'exit-code'.

任何人都可以提供解决此问题的提示吗?

答案1

详细阐述@Grace Thompson 的评论:

man systemd.exec将退出代码 203 描述为:

实际的进程执行失败(特别是 execve(2) 系统调用)。这很可能是由丢失或不可访问的可执行文件引起的。

对于您的情况,您需要确保/home/svceip/scripts/startstop/start_eip

  1. 存在。如果没有将您的二进制文件/脚本放在那里。
  2. 可执行(ls -l /home/svceip/scripts/startstop/start_eip显示-rwxr-xr-x)。如果没有,请使用chmod +x /home/svceip/scripts/startstop/start_eip.
  3. 是一个可执行文件。如果您使用file /home/svceip/scripts/startstop/start_eip,那么它应该显示ELF 64-bit LSB pie executable或以 开头的一些变化ELF。如果显示ASCII text executable,则第一行需要一个 shebang。在这种情况下,请确保第一行包含#!/bin/bash#!/usr/bin/python3或运行该脚本所需的任何内容。

相关内容