- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Meoemory windows- ipcrm marks for deletion but doe...
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-05-2001 08:43 AM
11-05-2001 08:43 AM
I did a ipcrm -m 1003
$ ipcs
IPC status from /dev/kmem as of Mon Nov 5 16:13:30 2001
T ID KEY MODE OWNER GROUP
Message Queues:
q 0 0x3c1441ec -Rrw--w--w- root root
q 1 0x3e1441ec --rw-r--r-- root root
Shared Memory:
m 0 0x411441cf --rw-rw-rw- root root
m 1 0x4e0c0002 --rw-rw-rw- root root
m 2 0x41180069 --rw-rw-rw- root root
m 1003 0x00000000 D-rw------- oracle8 dba (This is the one
that I was trying to get rid of)
m 604 0x02e6301c --rw------- oracle8 dba
m 405 0x650c0295 --rw-rw---- remedy remedy
m 206 0x02e6301d --rw------- oracle8 dba
Semaphores:
s 0 0x411441cf --ra-ra-ra- root root
s 1 0x4e0c0002 --ra-ra-ra- root root
s 2 0x41180069 --ra-ra-ra- root root
s 3 0x01090522 --ra-r--r-- root root
s 1476 0x0103f436 --ra------- oracle8 dba
s 1029 0x0e73a476 --ra------- oracle8 dba
s 134 0x660c0295 --ra-ra---- remedy remedy
s 263 0x010c04f3 --ra-ra-ra- root root
Is there a way to truly delete this without a reboot?
Am I missing a step?
Lynn
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 08:47 AM
11-05-2001 08:47 AM
SolutionClay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 08:48 AM
11-05-2001 08:48 AM
Re: Meoemory windows- ipcrm marks for deletion but doesn't delete
Try with ipcs -moba to display all the shared memeory information. and then try to delete with ipcrm -m followed by number. Delete entries only for those with 0 NATTACH
Goodluck,
-USA..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 08:49 AM
11-05-2001 08:49 AM
Re: Meoemory windows- ipcrm marks for deletion but doesn't delete
The shared memory isn't removed until the last process detaches. (see 'man ipcrm').
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 08:53 AM
11-05-2001 08:53 AM
Re: Meoemory windows- ipcrm marks for deletion but doesn't delete
Do this to check whether
there are any processes
still using the SM segment:
ipcs -am |grep 1003 |awk '{print $9}'
If it returns a value =>1
then there are processes using
the SM and you cannot remove
it gracefully.
-raj