Linux Redhat .bash_profile不起作用

时间:2014-08-28 02:35:50

标签: java linux .bash-profile

我修改了我的.bash_profile如下:

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/bin

ORACLE_HOME=/u01/app/oracle/product/11.2.0/xe
export ORACLE_HOME
export PATH=$PATH:$ORACLE_HOME/bin

export ORACLE_SID=XE

JAVA_HOME=/home/oracle/softs/jdk1.7.0_25
export JAVA_HOME

export PATH=$PATH:$JAVA_HOME/bin

但是echo $PATH命令的输出并不像我期望的那样:

/usr/lib64/qt-3.3/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/oracle/bin

当然,我不能使用Java命令。请帮忙。

1 个答案:

答案 0 :(得分:2)

你重装了你的环境吗? .bash_profile仅在您登录时重新阅读。

尝试资源.bash_profile:

$ . ~/.bash_profile

或者

$ source ~/.bash_profile

或者只是注销并重新登录。