l 自启动设置
安装完TimesTen之后,要使得TimesTen随着服务器的启动而自动启动的话,需要以root用户运行setuproot脚本:
[tt1@west-mountain bin]$ pwd
/home/tt1/TimesTen/tt70/bin
[tt1@west-mountain bin]$ su
Password:
[root@west-mountain bin]# ./setuproot
NOTE: The startup script appears to be installed in /etc/init.d/tt_tt70 …
l 环境变量设置
根据选用的不同shell 配置相应的环境变量,由于测试环境中选用的bash,且已经安装好Oracle 数据库,所以在用户 tt1 的根目录下,编辑 .bash_profile 如下:
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
export ORACLE_BASE=/opt/oracle
export ORACLE_HOME=$ORACLE_BASE/product/10.2.0
export ORACLE_SID=orcl
export ORACLE_TERM=xterm
export TIMESTEN=/home/tt1/TimesTen/tt70
export LD_LIBRARY_PATH=$TIMESTEN/lib:$ORACLE_HOME/lib
export PATH=$TIMESTEN/bin:$ORACLE_HOME/bin:$PATH:$HOME/bin
unset USERNAME
配置好profile后,要重新登录以使环境变量起作用。
注意,有些环境变量的名字在不同的平台上命名稍有差异,上面的例子只是针对Linux 服务器,具体的信息请参考 TimesTen 的环境变量说明。