Linux环境下Domino多帐户自动启动

#! /bin/sh

#

# A startup script for the ND server

# description: This script is used to start the domino server as a background process.

# Usage /etc/init.d/domino start|stop

?
?

# You should change the 3 following variables to reflect your environment.

?
?

# DOM_HOME is the variable that tells the script where the Domino Data resides

DOM_HOME=/local/notesdata

?
?

# DOM_USER is the Linux account used to run the ND server

DOM_USER=notes

?
?

# DOM_PROG is the location of the Domino executables

DOM_PROG=/opt/lotus/bin

?
?

# START: This is executed when you launch the command /etc/init.d/domino start

start() {

echo -n "Starting domino: "

?
?

# When the Domino Controller runs, it creates a .jsc_lock file.

# If you‘ve configured Domino to use the Domino Controller and the Server crashes then the ".jsc_lock" file is not deleted.

# When the system reboots and starts Domino, it will fail because of the existing .jsc_lock file.

# Here we want to ensure that we delete the file if it‘s there before Domino starts

if [ -f $DOM_HOME/.jsc_lock ]; then

rm $DOM_HOME/.jsc_lock

fi

cd $DOM_HOME

?
?

# The script must be launched by root.

# Here we become the notes user and we launch the Domino Server with the Domino Controller (-jc) enabled.

# To launch the Server without Domino Controller use the line:

# su $DOM_USER -c "$DOM_PROG/server > /dev/null 2>&1 &"

# Start Domino as a background process

su $DOM_USER -c "$DOM_PROG/server -jc -c > /dev/null 2>&1 &"

return 0

}

?
?

# STOP: This is executed when you launch the command /etc/init.d/domino stop

stop() {

echo -n "Stopping domino: "

cd $DOM_HOME

# Here we become the notes user and we quit the Domino Server and the Domino Controller (-jc).

# To stop Domino when the Domino Controller is not enabled use the line:

# su $DOM_USER -c "$DOM_PROG/server -q"

# We pipe the Y into the command so Domino is shut down without needing to type "Y" on the terminal.

echo Y | su $DOM_USER -c "$DOM_PROG/server -jc -q"

return 0

}

?
?

case "$1" in

start)

start

;;

stop)

stop

;;

*)

echo "Usage: domino {start|stop}"

exit 1

esac

??
?

使用注意:

- 将文档复制到 /etc/init.d/domino

- 检查文档所有者(owner)必须为root

- 检查文档属性是否正确,可将mode设置为 744

- 启动/停止Domino服务器可用命令行: /etc/init.d/domino start(stop)

- 如希望自动运行Domino,可在r0-r6运行level中创建脚本link,如下所示:

?
?

Now, create symlinks to start the Domino server at runlevels 3 and 5 with thefollowing commands:

ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc3.d/S95domino

ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc5.d/S95domino

And create symlinks to stop the server at runlevels 1 (single-user), 0 (halt) and 6(reboot) with the following commands:

ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc1.d/K01domino

ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc0.d/K01domino

ln -s /etc/rc.d/init.d/domino /etc/rc.d/rc6.d/K01domino?

时间: 2024-10-10 12:42:47

Linux环境下Domino多帐户自动启动的相关文章

linux环境下搭建MySQL数据库的双击热备

准备服务器 由于Mysql不同版本之间的(二进制日志)binlog格式可能会不太一样,因此最好的搭配组合是主(Master)服务器的Mysql版本和从(Slave)服务器版本相同或者更低,主服务器的版本肯定不能高于从服务器版本.本次我用于测试的两台服务器版本都是Mysql-5.5.17. Mysql 建立主-从服务器双机热备配置步骤 2.1环境描述A服务器(主服务器Master):59.151.15.36B服务器(从服务器Slave):218.206.70.146主从服务器的Mysql版本皆为5

Linux环境下MySQL数据库大小写区分问题

1.Linux下MySQL安装完后是默认:区分表名的大小写,不区分列名的大小写:2.用root帐号登录后,在/etc/my.cnf 中的[mysqld]后添加添加lower_case_table_names=1,重启MYSQL服务,这时已设置成功:不区分表名的大小写:lower_case_table_names参数详解:lower_case_table_names = 0其中 0:区分大小写,1:不区分大小写MySQL在Linux下数据库名.表名.列名.别名大小写规则是这样的:1.数据库名与表名

(1)Jenkins Linux环境下的简单搭建

(1)Jenkins Linux环境下的简单搭建 Jenkins是一个开源软件项目,旨在提供一个开放易用的软件平台,使软件的持续集成变成可能. ----百度百科 这是一款基于Java开发的工具.种种原因,最近刚开始接触,决定研究一下.Jenkins的搭建方法不止一种,一下就是个人总结的其中一种,文章内容比较浅显,不足之处,欢迎指正. 首先,所需要准备的工具JDK.Maven.资料上显示JDK版本最好高于1.7,并没有研究1.7以下版本,所谓"没有实际调研,就没有发言权",在此就不做过多

Linux环境下线程消息同步的陷阱

我们程序中常常会使用到线程间的消息同步处理,比如以下一段伪码 var message = "": void func()  {   1. 启动线程Thread(该线程中填充message的内容):   2. 阻塞,直到等待到完成message填充的事件:   3. 处理message:   .... } void Thread()  {   1. 通过某种处理填充message:   2. 触发func中的阻塞事件: } 我们通常会使用条件变量来完成类似情况的线程同步处理 比如wind

mosquitto在Linux环境下的部署/安装/使用/测试

mosquitto在Linux环境下的部署 看了有三四天的的源码,(当然没怎么好好看了),突然发现对mosquitto的源码有了一点点感觉,于是在第五天决定在Linux环境下部署mosquitto. 使用传统源码安装步骤: 步骤1:http://mosquitto.org/files/source/官网下载源码,放到Linux环境中.解压后,找到主要配置文件config.mk,其中包含mosquitto的安装选项,需要注意的是,默认情况下mosquitto的安装需要OpenSSL(一个强大的安全

ant+jmeter 在Linux环境下接口自动化测试环境搭建(2)

上一篇讲过在Windows下搭建的方法,今天这里写一下在Linux环境下搭建的方法. 实验准备:Linux服务器一台. 服务器上安装好jdk,配置好环境变量. 服务器上配置好ant. 工具准备: Jdk下载地址: http://www.oracle.com/technetwork/java/javase/downloads/index.html Jmeter下载地址 http://jmeter.apache.org/ Ant下载地址 http://ant.apache.org/ 环境准备: 所以

Linux环境下线程的同步与互斥以及死锁问题

由于本次要讨论操作系统的死锁问题,所以必须先研究的是linux环境下的线程同步与互斥 先看下面的代码 大家猜想输出应该是什么呢? 结果是下面这个样子 好吧,似乎并没有什么区别... 那么下面再看这段代码(请无视并忽略屏蔽的内容...) 大家猜想正确的结果是什么呢?5000,10000? 好吧,或许你们都错了. 在运行了一段时间后,它的结果是这样的. 是不是又对又错? 为什么呢? 这就是因为程序中printf语句作用:本身是库函数,所以必须进行系统调用,必须进入内核进行切换,有很大概率形成数据的混

Linux环境下使用JFS文件系统

Linux环境下使用JFS文件系统 JFS是IBM公司为linux系统开发的一个日志文件系统.从IBM的实力及它对Linux的态度来看,JFS应该是未来日志文件系统中最具实力的一个文件系统. JFS提供了基于日志的字节级文件系统,该文件系统是为面向事务的高性能系统而开发的.JFS 能够在几秒或几 分钟内就把文件系统恢复到一致状态.JFS能够保证数据在任何意外宕机的情况下,不会造成磁盘数据的丢失与损坏. 一.JFS文件系统特点 1.存储空间更大 JFS 支持的最小文件系统是 16M 字节.最大文件

Linux环境下安装Tigase XMPP Server

Tigase是一种XMPP服务器,可以作为采用XMPP协议的各种IM(Instant Messeging)工具(如Pandion.Spark等)的服务器. 在Linux环境下安装Tigase的步骤如下: (1)下载安装文件 到https://projects.tigase.org/projects/tigase-server/files下载安装文件,我下载的是tigase-server-5.2.0-b3447-dist.tar.gz. (2)解压缩 创建一个文件夹,将tigase-server-