ApacheDS 在 CentOS 7 中自动启动失败

ApacheDS 在 CentOS 7 中自动启动失败

我在 CentOS 7 上安装了 ApacheDS,但是它在系统启动时没有启动,我应该手动启动它,我该怎么办?

答案1

假设 :

  • 你从官方下载页面
  • 您已使用 进行了全新安装sudo yum localinstall apacheds-<version>

CentOS 服务位于 下/etc/init.d/。默认情况下,ApacheDS 服务名称带有版本号,这不太方便,因此您可能首先需要重命名它,以便将来的交互更容易,例如:

mv /etc/init.d/apacheds-2.0.0.AM25-default /etc/init.d/apacheds

重新启动服务以检查其是否正常工作:service apacheds restartsystemctl restart apacheds

现在,为了使 apacheds 服务能够在启动时启动,有两个(几乎)等效的选项,要么使用 systemctl (推荐),要么使用 chkconfig :

  • systemctl enable apacheds
  • /sbin/chkconfig apacheds on

也可以看看systemd查配置

相关内容