- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Connecting HP_UX server
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-20-2010 05:46 AM
11-20-2010 05:46 AM
Connecting HP_UX server
How to connect my HP-UX server's telnet from win 2003 server.While i am trying to connect it's giving error like "connection refused"
Thanks in advance,
regards,
Madhan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2010 06:05 AM
11-20-2010 06:05 AM
Re: Connecting HP_UX server
though your question is not clear , i assume that you are getting "connection refuse" when you are doing telnet to the box.
your sever may have been configured to accept connection securely only.did u try "ssh" ( putty , radio button option) to connect to the box , offcourse assuming that your account is NOT locked and that you are supplying the correct password.
Reg.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2010 08:59 PM
11-20-2010 08:59 PM
Re: Connecting HP_UX server
From your Windows server
ping unix-IP-addr
if this is OK.
then
telnet unix-ip-addr
(you got connection refused)
this means, the unix server does NOT accept telnet ( it is disabled, as telnet is not secure)
you can download a FREE ssh client like putty.
then try connecting using ssh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2010 09:37 PM
11-20-2010 09:37 PM
Re: Connecting HP_UX server
Typically what the folks said should work as you cannot ssh on windows unless you have something like putty. Else, "connection refused" can also be an error due to your firewall configuration.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2010 10:26 AM
11-21-2010 10:26 AM
Re: Connecting HP_UX server
Not a very complete description.
uname -a
"Connection refused" normally means that you
have connected to the server system, but
there's no server program there running or
registered for the requested port (Telnet).
If you want the Telnet server to work, then
you probably want a line like the following
in "/etc/inetd.conf":
telnet stream tcp6 nowait root /usr/lbin/telnetd telnetd
If that's been removed or commented-out, then
that would explain the symptom.
man inetd
(Look for "-c", if you change
"/etc/inetd.conf".)
> [...] "ssh" [...]
That won't fix a Telnet problem, but we don't
know what your real goal is. Do you want
Telnet to work, or do you want some way
(rsh/remsh, ssh, Telnet, ...) to run an
interactive session from some other system?