How to set up the DOMAIN_HOME environment variable in SUSE Linux

7,484

If you define

export DOMAIN_HOME=/path/to/domain

in your .bashrc in your home directory that is sufficient to define it.

After adding the changes there simply log out and log in again for the changes to take effect.

If instead you define

export DOMAIN_HOME=$DOMAIN_HOME:/path/to/domain

you are effectively saying set domain home equal to what is already there and append :/path/to/domain to the end of it. This is not what you want.

If you just type the first export command in your terminal session this value will be valid for the period of your terminal session and should be enough to test what you need.

Just remember that UNIX is a case sensitive beast, unlike Windows, so entering Export is not the same as entering export.

Share:
7,484

Related videos on Youtube

Rui F Ribeiro
Author by

Rui F Ribeiro

Updated on September 18, 2022

Comments

  • Rui F Ribeiro
    Rui F Ribeiro over 1 year

    I am running Java NetBeans 6.9 jdk 6 on SUSE Linux and I currently need to get the path of the weblogic domain of my Java application. I have read that I can directly access the environment variable by using this :

    System.getenv("DOMAIN_HOME")
    

    The problem is I couldn't find the DOMAIN_HOME environment variable (actually I have no idea on setting up the env. variable in linux). I found instructions on the internet telling me that I could set this up by setting :

    Export DOMAIN_HOME = /desired_path_to_domain
    

    Following several instructions found on the internet, I have already tried the following resolutions :

    1. I wrote this on my home's .profile : export DOMAIN_HOME=$DOMAIN_HOME:/path_to_domain

    2. I also wrote that on my home's .bashrc and on /etc/bash.bashrc

    3. I executed this on the konsole printenv ... and as expected I saw the list of all the environment variables. At first, I thought it was pointed to .profile but it wasn't. It was displaying an entirely different value from what was defined on .profile when I executed the line echo #PATH ... so I concluded that my environment variables weren't defined on .profile

    The question is, where exactly is that printenv (environment variables) defined and how can I modify it to include my DOMAIN_HOME variable. Guys, I really need this. I came up posting on forums because none of the solutions above or anywhere else could solve my problem. DOMAIN_HOME remains null (even after restarting my linux server).