Profile Settings
Move to the bxm user’s home directory and modify the shell profile. The profile file name may vary, such as .profile for Korn shell and .bash_profile for Bourne-again shell. The following example assumes Korn shell.
#!/usr/bin/env ksh
# User specific environment and startup programs
export JAVA_HOME=<<JDK_PATH>> # Set the JDK path. ex) /usr/local/jdk/jdk-11.0.2
export LANG=<<OS locale>> # Set the locale installed on the OS. (If not needed, you do not have to set it) ex) ko_KR.utf8
# BX Framework Environment
export BXM_HOME=<<BXM HOME>> # BXM installation directory. ex) /home/bxmv5/bxm
export BXM_LOG_HOME=$BXM_HOME/logs
export BXM_APP_HOME=$BXM_HOME/apps
export BXM_BAT_HOME=$BXM_HOME/batch
export PATH=$JAVA_HOME/bin:$BXM_BAT_HOME/bin:$PATH