dev/Network

tibco install

jeongsu 2020. 11. 7. 17:43

-console 을 붙여서 install

 

설치 후 유의 할점!!

/home/tibco 의 권한을 755로 수정

.bash_profile 수정!

# .bash_profile
 
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi
 
# User specific environment and startup programs
 
PATH=$PATH:$HOME/.local/bin:$HOME/bin
 
export PATH
export PS1='['$(hostname)':${LOGNAME}:${PWD}] '
 
export TIBCO_HOME=/home/tibco/tibco/tibrv/8.4
export TIB_INC=$TIBCO_HOME/include
export TIB_LIB=$TIBCO_HOME/lib
export PATH=.:$TIBCO_HOME/bin:$PATH
export LD_LIBRARY_PATH=$TIB_LIB:$LD_LIBRARY_PATH:/usr/local/lib
export SHLIB_PATH=$TIB_LIB:$LD_LIBRARY_PATH:/usr/local/lib
 
alias rvdstart='$TIBCO_HOME/bin/rvdstart'
alias log='cd /home/tibco/tibco/tibrv/log'

/home/tibco/tibco/tibrv/8.4/bin 경로에 rvdstart File 생성

#!/bin/ksh
umask 002
/home/tibco/tibco/tibrv/8.4/bin/rvd64 -listen 7500 -http 7580 -logfile /home/tibco/tibco/tibrv/log/rvd.log -log-max-size 4096 -log-max-rotations 10