- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- I need an always ON service!!
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-15-2004 03:26 AM
11-15-2004 03:26 AM
for security reasons the system platform administrator decided to inhibit all the following services:
1. R command functionality:
1. rlogin
2. remsh
3. rcp
4. rwho
5. rpc.cmsd
6. rpcbind
7. rexec
2. FTP
3. TFTP
4. Network File System (NFS).
5. Traceroute
6. Finger and talk applications.
7. Echo (udp/tcp)
8. Chargen (tcp)
9. Time (tcp)
10. Daytime (tcp)
11. SNMP Agent
Unfortunately I have an application which check for the alive status of the machines by connecting to a certain port, currently the port 13, which is being disabled.
Are there any services always running but the previous listed ones?
Thanks a lot
Enrico
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2004 03:29 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2004 03:31 AM
11-15-2004 03:31 AM
Re: I need an always ON service!!
Try SSH port - 22 TCP
and/or telnet port - 23 TCP
HTH,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2004 03:35 AM
11-15-2004 03:35 AM
Re: I need an always ON service!!
25 - sendmail
80 - http
22 - sshd
Or just ping the machine instead of opening the connection to it.
-Tomek
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2004 03:43 AM
11-15-2004 03:43 AM
Re: I need an always ON service!!
Cheers,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2004 03:51 AM
11-15-2004 03:51 AM
Re: I need an always ON service!!
Regards,
Fred
"Reality is just a point of view." (P. K. D.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2004 08:31 PM
11-16-2004 08:31 PM
Re: I need an always ON service!!
I'm missing for instance telnet and sendmail.
Get a list of open ports and services with
"netstat -a" and lsof.
But that's not the point!
You should define a state where you consider the machine alive!
Monitoring port 13 (daytime) does not tell you that your application is alive.
It only tells you that the kernel answers network queries.
You can even ping your machine. But the result is: The host responds to icmp queries. Not more!
Monitor your application instead of unnecessary ports, e.g. frequently get http pages, issue sql queries etc.!!
Hope this helps,
Armin