Centos开机启动

Posted wanhua.wu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos开机启动相关的知识,希望对你有一定的参考价值。

[[email protected] bin]# pwd
/usr/local/nexus-2.14.0-01/bin
[[email protected] bin]# cp nexus /etc/rc.d/init.d/  
[[email protected] bin]# cd /etc/rc.d/init.d/
[[email protected] init.d]# ls
functions  jexec  netconsole  network  nexus  README
[[email protected] init.d]# chkconfig --add nexus  
[[email protected] init.d]# chkconfig --list | grep nexus 

注意:该输出结果只显示 SysV 服务,并不包含原生 systemd 服务。SysV 配置数据可能被原生 systemd 配置覆盖。 
      如果您想列出 systemd 服务,请执行 systemctl list-unit-files。
      欲查看对特定 target 启用的服务请执行
      systemctl list-dependencies [target]。

nexus              0:关    1:关    2:开    3:开    4:开    5:开    6:关
[[email protected] init.d]# chkconfig nexus on  
[[email protected] init.d]# chkconfig --list | grep nexus 

注意:该输出结果只显示 SysV 服务,并不包含原生 systemd 服务。SysV 配置数据可能被原生 systemd 配置覆盖。 
      如果您想列出 systemd 服务,请执行 systemctl list-unit-files。
      欲查看对特定 target 启用的服务请执行
      systemctl list-dependencies [target]。

nexus              0:关    1:关    2:开    3:开    4:开    5:开    6:关
[[email protected] init.d]# 

 

以上是关于Centos开机启动的主要内容,如果未能解决你的问题,请参考以下文章

centos 开机启动某个程序

centos怎样将服务加入开机自动启动

centos7怎样让开机自动启动网络

Centos 7关于rc.local脚本命令开机不执行及指定用户启动的解决方法

centos怎么设置开机自启动ssh服务

关于centos下开机自启动问题