- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: not able to telnet or access my 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
01-06-2006 04:21 PM
01-06-2006 04:21 PM
need some help:
i rebooted the web server this morning (friday) and the whole day it was working fine. about 7 pm my web master tells me that she cannot access the server using telnet OR otherwise.
i did not change any settings.
i don't have remote access to the console from my house during the weekend.
i did a ping and the server is responding.
but telnet responds with:connection closed by foreign host.
i use putty: connection reset by peer
any ideas would be good/welcome/almost necessary to say the least. we are a college so i need to get this up by monday latest.
thanks for your time and suggestions
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2006 05:48 PM
01-06-2006 05:48 PM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2006 06:16 PM
01-06-2006 06:16 PM
Re: not able to telnet or access my server
as mentioned above, you will have to troubleshoot from the console itself!
you can also try to connect through another server in your infrastructure.. just in case...
also check if other services are responding...
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2006 06:29 PM
01-06-2006 06:29 PM
Re: not able to telnet or access my server
shooting will be needed from console?
thanks ap.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2006 07:01 PM
01-06-2006 07:01 PM
Re: not able to telnet or access my server
Here is what I can offer to check:
Understand that the "ping" doesn't get any respond from the system as well as telnet failed to the system.
Console login is required to troubleshoot. After login, you can check the following:
1. if you can login at console at all (and since we can't telnet to the system). The system might be hung. Perform "tc" via CM>. This will generate crash dump for analysis.
2. if login successful at console, verify the system is operational: application and command execute.
3. ping to other server IP and verify you are getting a response or not. If not, check lancard,
# lanscan
# ioscan -fnC lan <--- make sure they are CLAIMED
# ifconfig lanX <--- replace lanX with lan interface name you found from lanscan and make sure the output has "up" in the display. If it's not "up", use the following command to bring it "up"
# ifconfig lanX up
4. If above ok, check your lan cable. Swap it with another system lan cable if you have one and test telnet again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2006 07:22 PM
01-06-2006 07:22 PM
Re: not able to telnet or access my server
you can also view your syslog file for any error occurrences.
more /var/adm/syslog.log
also check if your inetd process is still running
ps -ef|grep inetd
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2006 01:32 AM
01-07-2006 01:32 AM
Re: not able to telnet or access my server
thanks again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2006 04:29 PM
01-07-2006 04:29 PM
Re: not able to telnet or access my server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-07-2006 05:06 PM
01-07-2006 05:06 PM
Re: not able to telnet or access my server
Jan 7 09:46:31 wschp vmunix: file: table is full
You need to increment your kernel parameter, nfile, value. Above message indicate that your system is scarce of nfile resource.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2006 03:53 PM
01-08-2006 03:53 PM
Re: not able to telnet or access my server
You will have to review your kernel parameters.
You may proceed as follows:
1. sar -v 2 5
(file-sz is the problem)
2. kmtune -lq nfile
(check to see current value)
3. increase nfile via sam.
Note that you can also query the Sytem Table using Glance+
e.g.
SYSTEM TABLES REPORT
System Table Available Used Utilization High(%)
--------------------------------------------------------------------------------
Proc Table (nproc) 4096 685 17 17
File Table (nfile) 63498 6437 10 10
Shared Mem Table (shmmni) 512 14 3 3
Message Table (msgmni) 4096 2 0 0
Semaphore Table (semmni) 4096 26 1 1
File Locks (nflocks) 4096 468 11 11
Pseudo Terminals (npty) 60 0 0 0
Buffer Headers (nbuf) na 89250 na na
Also, note that the nfile parameter is generally calculated (in SAM) using the following formula:
nfile (19*(NPROC+16+MAXUSERS)/10+32+2*(NPTY+NSTRPTY+NSTRTEL))
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2006 06:31 PM
01-08-2006 06:31 PM
Re: not able to telnet or access my server
Login to the server thr console , and just restart the inetd process
inetd -c
and then try to stop and start the web service.
regards
Tvs