2024年11月Linux系统设置DB2等服务开机启动的过程(2)

发布时间:

  ⑴.编写启动was和tds的脚本

  ⑵vi startWasTds

  ⑶#!/bin/sh

  ⑷# chkconfig:

  ⑸# processname:IBMTDSWAS

  ⑹# description:file was tds

  ⑺/opt/IBM/WebSphere/AppServer/profiles/AppSrvTds/bin/startServer.sh server

  ⑻/opt/IBM/WebSphere/AppServer/profiles/AppSrv/bin/startServer.sh server

  ⑼/opt/IBM/WebSphere/AppServer/profiles/ilog/bin/startServer.sh serve

  ⑽/opt/ibm/ldap/V./sbin/ibmdiradm -l dsrdbm -t

  ⑾/opt/ibm/ldap/V./sbin/ibmslapd

  ⑿linux 命令 chkconfig 要求文件头中

  ⒀Shell chkconfig代码

  ⒁# chkconfig: (默认的runlevel (启动优先级 (关闭优先级

  ⒂# processname:进程名称

  ⒃# description:进程描述

  ⒄.给文件赋予权限

  ⒅chmod -R startDB

  ⒆chmod -R startWasTds

  ⒇chkconfig --add startDB

  ⒈chkconfig --add startWasTds

  ⒉添加开机启动成功。

  ⒊以上就是Linux系统中设置DB等服务开机启动的过程了,本文只是以设置DB服务开机启动为例子,用这个方法还可以启动更多服务。