- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: variable not set
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 02:47 PM
11-09-2001 02:47 PM
variable not set
BEADIR=/opt/messageq; export BEADIR
then i run a program or something that use this variable and send me the message
BEADIR environment variable not set
the same happens with the variable TERM and other ones.
do you have any idea why the system does not recognize the variables? please email me at jortiz@gan.com.mx
Tahnks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 02:53 PM
11-09-2001 02:53 PM
Re: variable not set
When you set a env check whether new env is in place by running 'env' command.
Also check is your application you have some configuration files changing this parameter.
Goodluck
-USA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 02:53 PM
11-09-2001 02:53 PM
Re: variable not set
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 03:02 PM
11-09-2001 03:02 PM
Re: variable not set
pleas eview the attachment
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 03:07 PM
11-09-2001 03:07 PM
Re: variable not set
After you do this, check to
see whether it is really set-
do
echo $BEADIR
-> it should return /opt/messageq
If it does not, then it could
be a problem with the shell
you are using:
do echo $SHELL
-> it should be sh or ksh
If it is csh, then you would
need to use:
setenv BEADIR /opt/messageq
<
check what shell this program is using.
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 03:11 PM
11-09-2001 03:11 PM
Re: variable not set
/opt/messageq
then i type echo $SHELL and returns
/sbin/ksh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 03:20 PM
11-09-2001 03:20 PM
Re: variable not set
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 03:29 PM
11-09-2001 03:29 PM
Re: variable not set
export TERM=vt100
then i exec man ll
and the terminal screen does not respond to the variable TERM, i mean the information appears moved. i could not find the reason, i have other machine and works fine.
any ideas?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 04:21 PM
11-09-2001 04:21 PM
Re: variable not set
What is the output of
***
#echo $SHELL
#set (all your settings)
****
Next, as what user are you running this application?
Did it ever run correctly??
Some applications have a
initialization script which
sets variables needed by
subsequent startup scripts.
Does this application have
any such script?
If this application which you
are running is a shell script,
can you edit it (readonly) and
see whether it has any settings?
-raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2001 06:14 PM
11-09-2001 06:14 PM
Re: variable not set
