配置启动脚本
1. 使用root账号进启动配置文件夹/etc/init.d
[root@localhost init.d]# cd/etc/init.d
2. 创建脚本文件start_ps(这个文件名可以任意),并编辑
#!/bin/bash
cd /home/nathan/exe_file/installation_locateserver
./run.sh
3. 修改start_ps的权限
[root@localhost init.d]# chmod 755start_ps
运行级别
不同的运行级定义如下
# 0 – 停机(千万不能把initdefault 设置为0 )
# 1 – 单用户模式 # s init s = init 1
# 2 – 多用户,没有 NFS
# 3 – 完全多用户模式(标准的运行级)
# 4 – 没有用到
# 5 – X11 多用户图形模式(xwindow)
# 6 – 重新启动(千万不要把initdefault 设置为6 )
1. 查看运行级别
[root@localhost init.d]# runlevel
N 5
2. 配置n3的启动
[root@localhost rc3.d]# cd/etc/rc3.d
[root@localhost rc3.d]# ln -s/etc/init.d/start_ps S99ps
3. 配置n5的启动
[root@localhost rc3.d]# cd /etc/rc5.d
[root@localhost rc3.d]# ln -s/etc/init.d/start_ps S99ps