- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- rlogin / telnet terminal settings
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
05-04-2005 04:45 PM
05-04-2005 04:45 PM
We are using oracle 7 on Hp-UX 11i in our production server .
We are having one oracle based application called ACCELL which
works fine if we telnet to the server from other clients . We are using
the terminal emulation program Netterm on our clients .
Now for some reason we want to change the setup in a way that the
clients will be logging into another server and some of them rlogin
from there to the production server , this is done by adding rlogin in
that user's .profile , so the second login will be transparent to
the end user. Now the pblm is that those users which are going through
rlogin to the production server are not able to work with the application
as the keymapping getting changed ( e.g when we press F1 it should
exit from the application , if we rlogin this key does not work ,
but this works fine if we connect to the production server through
telnet instead of rlogin ). We checked the TERM variable which is
same for after both rlogin and telnet, also set stty settings same as
that which shown after telneting. But the pblm not getting solved.
awaiting for ur responses
rgds
Bejoy
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2005 06:07 PM
05-04-2005 06:07 PM
Re: rlogin / telnet terminal settings
The script being run on the server thats being connected to needs to load /etc/profile and or .profile environment variables.
To see run this command.
From telnet session
env > /tmp/env.telnet
from a rlogin session
env /tmp/env/env.rlogin
compare the files, make the environments match and the problem should go away.
Oracle is very sensitive to environmental issues.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2005 09:46 PM
05-04-2005 09:46 PM
Re: rlogin / telnet terminal settings
I have done as SEP said , but both the enviroment is same.
I made the files as u said by first telneting and then rloging , but both the files are same only, means both the environments are same.
rgds
Bejoy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2005 12:42 AM
05-05-2005 12:42 AM
Re: rlogin / telnet terminal settings
Tim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2005 02:49 PM
05-05-2005 02:49 PM
Re: rlogin / telnet terminal settings
If i rlogin from the same server for the same user , then also the function keys are not funcitonal .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2005 03:30 PM
05-05-2005 03:30 PM
Re: rlogin / telnet terminal settings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2005 04:06 PM
05-05-2005 04:06 PM
Re: rlogin / telnet terminal settings
for both telnet and rlogin the ttytype is vt100
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 09:06 PM
05-15-2005 09:06 PM
Re: rlogin / telnet terminal settings
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 09:21 PM
05-15-2005 09:21 PM
SolutionDownload expect from http://expect.nist.gov/
and use this script to automate the login
and check this thread for tips on the script
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=75149
Regards,
Naveej
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-15-2005 11:32 PM
05-15-2005 11:32 PM
Re: rlogin / telnet terminal settings
Downloaded expect , it is working !! , so instead of rlogin i can use telnet without user interaction to keep the terminal settings working for our application which was not possible through rlogin .
Thanks to all for ur valuable replies.