- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- old shells
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
04-18-2001 07:21 AM
04-18-2001 07:21 AM
old shells
Any suggestions would be greatly appreciated.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 07:36 AM
04-18-2001 07:36 AM
Re: old shells
the fact, that your DBAs do this let me assume, that they might execute some database query, that does not return, due to bad responsetime.
If you have a 10GB table in i.e. a SAP database, where someone issues a
SELECT COUNT(*) FROM BIGTABLE;
(which can be a really bad idea)
this might take some time to return.
So this might be the reason why they do not type "exit" -> not possible.
This is bad, because, if the database is i.e. ORACLE, the bad statement is on the database already, and the usersession is in IO-WAIT from OS-view -> This is why the session does not die.
Suggestion:
Check if you only have shells, or if you have query-tool processes as well (svrmgrl, sqlplus[ORACLE] or dbaccess[INFORMIX]). If yes
-> check with your DBAs, that they keep track on killing their sessions if they terminate them this way.
SQL: KILL SESSION ...
This is in their own interest, because the still running statements in their query-tools might eat database-resources (locks, rollback-space, db-buffers), in addition to the CPU.
With killing the SQL-Session, the query tool should die and with this the hanging shell as well.
Hope this helps.
Volker
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 08:03 AM
04-18-2001 08:03 AM
Re: old shells
Mark
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 09:11 AM
04-18-2001 09:11 AM
Re: old shells
They are using an Oracle DB, however, the shells are not getting 'hung' due to slow response time, they just are not logging out correctly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 10:02 AM
04-18-2001 10:02 AM
Re: old shells
It's not a security risk per se, but I've got a question for you. What product are they using to connect to the system? If might be a risk if someone gets to their machine and reconnects to the same session. I think that would be highly unlikely, tho'.
Just my 2 cents
Mo
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-18-2001 10:06 AM
04-18-2001 10:06 AM
Re: old shells
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2001 12:19 AM
04-19-2001 12:19 AM
Re: old shells
Especially as there are some RAS connections i would definately kill those old shells just to make sure.
Just my thoughts. Stefan