Amir Soleimani Borujerdi Asked: 2019-07-24 20:22:23 +0800 CST2019-07-24 20:22:23 +0800 CST 2019-07-24 20:22:23 +0800 CST ApacheDS 自动启动在 CentOS 7 中失败 772 我在CentOS 7上安装了ApacheDS,但系统启动时它没有启动,我应该手动启动它,我该怎么办? centos-7 ldap 1 个回答 Voted Best Answer EricLavault 2019-07-30T02:41:29+08:002019-07-30T02:41:29+08:00 假设 : 您从官方下载页面获得了 ApacheDS .rpm 您使用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 restart或systemctl restart apacheds。 现在,为了使 apacheds 服务能够在启动时启动,有两个(几乎)等效的选项,要么使用 systemctl(推荐),要么使用 chkconfig : systemctl enable apacheds /sbin/chkconfig apacheds on 另见systemd,chkconfig
假设 :
sudo yum localinstall apacheds-<version>
.CentOS 服务位于
/etc/init.d/
. 默认情况下,ApacheDS 服务名称带有版本号,这不是很方便,因此您可能首先要重命名它,以便将来的交互更容易,例如:重新启动服务以检查其是否正常工作:
service apacheds restart
或systemctl restart apacheds
。现在,为了使 apacheds 服务能够在启动时启动,有两个(几乎)等效的选项,要么使用 systemctl(推荐),要么使用 chkconfig :
systemctl enable apacheds
/sbin/chkconfig apacheds on
另见systemd,chkconfig