- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Error connecting to HP UX system
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
12-10-2003 11:51 PM
12-10-2003 11:51 PM
We're receiving a message :
"
telnetd: Telnet device drivers missing: No such device"
When we logon to our system.
It's a HPUX 11.00 server with 59 users connected, no full filesystem, and no absurd load.
What's going on ???
Kl@@s
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:00 AM
12-11-2003 12:00 AM
Re: Error connecting to HP UX system
Check with sam npty and nstrpty, increase them if necessary. I do not remember if this parameter is dynamic or if you have to reboot.
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:00 AM
12-11-2003 12:00 AM
Re: Error connecting to HP UX system
If you can telnet to other systems it would appear to be a fault with this system. Are all users affected? If only some, do you have a mixture of PC and workstation users? If you have a mixture, is it only one group affected?
Mark Syder (like the drink but spelt different)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:04 AM
12-11-2003 12:04 AM
Re: Error connecting to HP UX system
My npty = 400
and my nstrpty = 96
Are they to small and what do they mean ?
Kl@@s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:04 AM
12-11-2003 12:04 AM
Re: Error connecting to HP UX system
from? It seems to be a problem with the
system you are logging in from.
Check anyway /etc/inetd.conf and if
/usr/lbin/telnetd exists on the HP. Try telnet from the HP server back into itself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:09 AM
12-11-2003 12:09 AM
Re: Error connecting to HP UX system
Also we've received a message: "cannot create pty....." during an su command.
Kl@@s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:10 AM
12-11-2003 12:10 AM
Re: Error connecting to HP UX system
96 can be little, since the nstrpty are shared with remsh and otherr r command.
One shot, without reboot, could be to re-install the special files with
insf -e -C pseudo
Or try to kill some "r"command and see if you can connect.
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:12 AM
12-11-2003 12:12 AM
SolutionThere are actually three different types of pty device on 11.00 and beyond.
classic pty - man pty
used by hpterm, script, and ied
limited by npty kernel tunable
stream pty - man ptm, man pts
used by dtterm, rlogin, and gnome-terminal
limited by nstrpty kernel tunable
telnet pty - man telm, man tels
used by telnet
limited by nstrtel kernel tunable
Massimo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:16 AM
12-11-2003 12:16 AM
Re: Error connecting to HP UX system
"telnetd: Telnet device drivers missing: No such device"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 12:49 AM
12-11-2003 12:49 AM
Re: Error connecting to HP UX system
as far as I know below the only three reasons about message
"telnetd: Telnet device drivers missing: No such device".
1. check by
# swlist -l product | grep -i PHNE_25913
# swlist -l product | grep -i PHNE_27393
about patch PHNE_25913 or PHNE_27393; if one of these patches is installed then you could have that message. There are known problems about these patches and that telnet message.
SOLUTION:
remove those patches and install the equivalent patch PHNE_27788 or later.
2. major/minor number of telnet device files are different:
# lsdev | grep tel
18 -1 telm strtelm
19 -1 tels strtels
The value shown by "lsdev" for "telm" would need to be equal to the minor
number of "/dev/telnetm"
- AND -
the value shown for "tels" would need to be equal to the major number of
the /dev/pty/t* device files.
SOLUTION:
To solve the problem, we need to remove the incompatible device files
and create new device files:
a.) For the "tels"-devices:
=> rmsf /dev/pts/t*
=> insf -v -d tels
b.) For the "telm"-device:
=> rmsf /dev/telnetm
=> insf -v -d telm
3. Reached the limit of connections:
SOLUTION:
by SAM increase the following kernel parameters:
maxusers
npty
nstrpty
and after reboot execute the following commands:
# rm /dev/pty/*
# rm /dev/ptym/*
# cd /dev
# insf -d pty -n 400
400 is an example if you incerased npty and nstrpty to 400.
I hope this helps you.
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 01:27 AM
12-11-2003 01:27 AM
Re: Error connecting to HP UX system
First we will try to increase the three parameters.
The total amount of users currently loged on is 55 and the system works fine now . . :-)
We have to install the latest patches in the near future anyway . . .
If we increase the parameters by sam will the new pty's will be created automaticly ?
Kl@@S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 01:43 AM
12-11-2003 01:43 AM
Re: Error connecting to HP UX system
By this command it is possible to increase runtime new ptys (about npty and nstrpty) to
Anyway a cleaner procedure would be
# rm /dev/pty/*
# rm /dev/ptym/*
# cd /dev
# insf -d pty -n
In order to fix this change, pty values (about npty and nstrpty) you should change them by SAM and reboot and after it
# rm /dev/pty/*
# rm /dev/ptym/*
# cd /dev
# insf -d pty -n
Best regards,
Ettore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2003 05:09 AM
12-11-2003 05:09 AM
Re: Error connecting to HP UX system
Please wait for the points till tomorrow.
Kl@@s