<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Filesystem not getting unmounted in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484079#M362941</link>
    <description>&amp;gt; kill -9 `lsof -t /cbsora`&lt;BR /&gt; &lt;BR /&gt;Please, never use kill -9, especially on complicated applications and database programs. This is the worst possible way to terminate a program and almost guarantees corrupted data files. Although beginner Unix courses teach kill -9, they always leave out the serious consequences. &lt;BR /&gt; &lt;BR /&gt;There are many, many kill signals (man kill) and most can be handled within the program to perform an orderly shutdown. kill with no value (which is actually kill -15) is always the correct signal to stop a program. If the program needs another signal (and you have no documentation on what is proper), use kill -1 and then kill -2. Each of these signals can be sensed by a program or script to perform a proper close of open files and release shared memory.&lt;BR /&gt; &lt;BR /&gt;kill -9 is very dangerous in that it gives the program no chance at all to perform a proper shutdown. It should only be used manually (never in a script) when you can identify the program and know that a kill -9 will not damage files. kill -9 can leave shared memory badly fragmented and will require a reboot to fix. Your script needs to write the process names that are running into a log, then issue kill -15 for each PID, sleep for 10-20 seconds, then check again. Log any PIDs that still exist and issue kill -1 against those processes. When the script fails to stop all the processes, log the process names with ps -fpPID,PID.. so you can fix the broken code at a later time, then issue the kill -9.&lt;BR /&gt; &lt;BR /&gt;Complicated programs and databases must respond to kill -15, -1 or -2 or they must be repaired for proper operation.</description>
    <pubDate>Tue, 25 Aug 2009 14:40:03 GMT</pubDate>
    <dc:creator>Bill Hassell</dc:creator>
    <dc:date>2009-08-25T14:40:03Z</dc:date>
    <item>
      <title>Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484063#M362925</link>
      <description>Let me explain you the background of this problem .&lt;BR /&gt;&lt;BR /&gt;We have /cbsora filesystem integrated in Cluster package xxx. This FileSystem /cbsora is the  home for oracle. &lt;BR /&gt;&lt;BR /&gt;Now the problem is whenever we halt the package xxx this Filesystem doesnt unmount, it says the cannot unmount /cbsora. Device busy.&lt;BR /&gt;&lt;BR /&gt;We have also  found the exact cause. This happens when any database administrator has  sudo to oracle ID ( home of oracle :  /cbsora/ora10g) at the moment when the package is halted the FS /cbsora doesnt get unmounts.&lt;BR /&gt;&lt;BR /&gt;Now the problem to be solved is that why this /cbsora is not getting unmounted. When the package halt script is running fuser -ku this should get unmount but its not getting unmount.&lt;BR /&gt;&lt;BR /&gt;  The oracle Database shutdowns properly  during package halt so oracle has told that its problem from HP-UX side. &lt;BR /&gt;&lt;BR /&gt;Guys how do we resolve this Issue because this is creating a huge problem because the package failover is not  happening  in case of any disaster on our primary node because unless the package halt is successful on primary node the package will not start on secondary node. Plzz help</description>
      <pubDate>Sat, 22 Aug 2009 05:13:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484063#M362925</guid>
      <dc:creator>raiden</dc:creator>
      <dc:date>2009-08-22T05:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484064#M362926</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;1)Check package control log and syslog,what its saying??&lt;BR /&gt;&lt;BR /&gt;2)Is manual unmounting successfull??? What   its output??&lt;BR /&gt;&lt;BR /&gt;3)Provide some more details about cluster,&lt;BR /&gt; #cmviewcl -v, etc..&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;LIJEESH N G</description>
      <pubDate>Sat, 22 Aug 2009 05:29:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484064#M362926</guid>
      <dc:creator>Lijeesh N G_1</dc:creator>
      <dc:date>2009-08-22T05:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484065#M362927</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt; Pls run the following command and see any process is still using the FS and kill/stop them as necessaary.&lt;BR /&gt;&lt;BR /&gt;fuser -cu /cbsora</description>
      <pubDate>Sat, 22 Aug 2009 07:42:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484065#M362927</guid>
      <dc:creator>Ganesh.A</dc:creator>
      <dc:date>2009-08-22T07:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484066#M362928</link>
      <description>Raiden,&lt;BR /&gt;-You need to check in the control file , /etc/cmcluster/pkg.cntl if the oracle shutdown and kill commands are given.&lt;BR /&gt;&lt;BR /&gt;-Also while package shutdown keep an eye on the log file , pkg.cntl.log   &lt;BR /&gt;&lt;BR /&gt;-What was the last error before it says unable to unmount the /cbsora filesystem.&lt;BR /&gt;&lt;BR /&gt;-Also keep another session with # fuser -cu /cbsora/ora10g  , you will what processes are holding it from geting it unmounted.&lt;BR /&gt;&lt;BR /&gt;- Can you unmount the /cbsora manually , after package halt. If not then to check what process attached to this fs and to troubleshoot further.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 22 Aug 2009 10:18:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484066#M362928</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-08-22T10:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484067#M362929</link>
      <description>Being home directory of oracle user, can it be unmounted when the oracle user logged in.????&lt;BR /&gt;Logout the oracle user and try a manual switching of package.It should success.</description>
      <pubDate>Sat, 22 Aug 2009 10:29:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484067#M362929</guid>
      <dc:creator>sen_ux</dc:creator>
      <dc:date>2009-08-22T10:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484068#M362930</link>
      <description>@ Lijeesh , Raj&lt;BR /&gt;&lt;BR /&gt;Package control log says that the Filesystem /cbsora cannot be unmounted. FileSystem busy&lt;BR /&gt;Manual unmounting is also not possible after package halt unless i tell the oracle user to logout. &lt;BR /&gt;&lt;BR /&gt;In package control file I see some some root and oracle named process using that fileSystem and I guess these are process created from user oracle login.&lt;BR /&gt;&lt;BR /&gt;We and Database team are sure that the oracle is getting shutdown properly before the FS unmounting starts during package halt.&lt;BR /&gt;&lt;BR /&gt;@ sen &lt;BR /&gt;&lt;BR /&gt;The FS canot be unmounted when any oracle user is logged in .The only solution we are trying till now during package failover is to tell the oracle user to logout from their sessions. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;But what in case if any disaster happens???? . Thats the only concern for us and my management because last week by  manual mistake the primary node was shutdown and due to these existing  oracle login the package did not halted successfully on primary and hence failed to start on secondary.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How do we take care of this .. please suggest guys.... because all blames are on Unix..... Why the fuser -ku command is not working for that Filesystem /cbsora during package halt..... ... . Please help ...</description>
      <pubDate>Sun, 23 Aug 2009 02:26:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484068#M362930</guid>
      <dc:creator>raiden</dc:creator>
      <dc:date>2009-08-23T02:26:35Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484069#M362931</link>
      <description>Raiden,&lt;BR /&gt;&lt;BR /&gt;"Manual unmounting is also not possible after package halt unless i tell the oracle user to logout. "&lt;BR /&gt;&lt;BR /&gt;I am wondering how oracle shutsdown itself during pkg halt,&amp;amp;  without killing /closing the 'oracle users' session !!&lt;BR /&gt;&lt;BR /&gt;You mentioned that , manual unmount also not possible unless you tell the oracle user to logout.   The oracle shutdown step shuould kill/close any open oracle session , and then it should shutdown/dismount the database. Oracle should take care of this . Make sure you have dbhalt script properly in place in the pkg.cntl file under customer defined function.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;hth,&lt;BR /&gt;Raj.&lt;BR /&gt;</description>
      <pubDate>Sun, 23 Aug 2009 05:28:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484069#M362931</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-08-23T05:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484070#M362932</link>
      <description>Can you paste the fuser command section of the package script.?</description>
      <pubDate>Sun, 23 Aug 2009 11:35:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484070#M362932</guid>
      <dc:creator>sen_ux</dc:creator>
      <dc:date>2009-08-23T11:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484071#M362933</link>
      <description>@ Raj&lt;BR /&gt;&lt;BR /&gt;Please understand that these are not database level logins ,, I am talking about system level logins wherein a normal database team users logins with his ID....then does sudo to oracle to connect to SQL prompt... I hope now you understand I am talking about system level logins..&lt;BR /&gt;&lt;BR /&gt;Oracle is doing its job properly .... It is properly disconecting all users who are connected through Application before shutting it down .. The problem is only with this stupid HPUX box who is not able to kill the user level login who are using the /cbsora Filesystem ( the home of oracle ID)</description>
      <pubDate>Sun, 23 Aug 2009 12:36:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484071#M362933</guid>
      <dc:creator>raiden</dc:creator>
      <dc:date>2009-08-23T12:36:15Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484072#M362934</link>
      <description>Raiden,&lt;BR /&gt;&lt;BR /&gt;So here you go , &lt;BR /&gt;To put an extra line in the customer_defined_start script like below :&lt;BR /&gt;&lt;BR /&gt;--&amp;gt; After oracle db halt commands in &lt;BR /&gt;pkg.cntl file:&lt;BR /&gt;#---------&lt;BR /&gt;kill -9 `who -u | grep oracle | awk '{print $7}' | xargs`&lt;BR /&gt;fuser -cu /cbsora &lt;BR /&gt;fuser -ku /cbsora&lt;BR /&gt;echo "Checking /cbsora active processes again .."&lt;BR /&gt;fuser -cu /cbsora &amp;gt;&amp;gt; fuser.cbsora.final.txt&lt;BR /&gt;#---------&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this will help to kill the left over prcesses to /cbsora and it should umount fine. Also fuser.cbsora.final.txt file should be blank if all killed properly with the extra script.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sun, 23 Aug 2009 18:21:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484072#M362934</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-08-23T18:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484073#M362935</link>
      <description>Correction to the above:&lt;BR /&gt;&lt;BR /&gt;To put an extra line in the "customer_defined_halt " script .&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Raj.</description>
      <pubDate>Sun, 23 Aug 2009 18:23:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484073#M362935</guid>
      <dc:creator>Raj D.</dc:creator>
      <dc:date>2009-08-23T18:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484074#M362936</link>
      <description>Raj,&lt;BR /&gt;&lt;BR /&gt;The solution which you have given is already implemented in cluster functionality by default.&lt;BR /&gt;&lt;BR /&gt;Whenever the package is halted the fuser -ku is executed by default to kill any process using the Cluster Package Filesystem.&lt;BR /&gt;&lt;BR /&gt;In my Issue also the command fuser -ku is being executed but still the processes using /cbsora are not killed and thts the only concern.&lt;BR /&gt;&lt;BR /&gt;Please guys suggest some alternative.</description>
      <pubDate>Mon, 24 Aug 2009 06:12:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484074#M362936</guid>
      <dc:creator>raiden</dc:creator>
      <dc:date>2009-08-24T06:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484075#M362937</link>
      <description>Hello, &lt;BR /&gt;&lt;BR /&gt;I have found that fuser does not always report all the processes using a file system.  If you have lsof installed try it using the -t option and using that as input to kill -9  you can use this instead of the fuser -k command .&lt;BR /&gt; &lt;BR /&gt;lsof /cbsora  to list them &lt;BR /&gt;&lt;BR /&gt;kill -9  `lsof -t /cbsora` &lt;BR /&gt;sleep 30 &lt;BR /&gt;lsof /cbsora &lt;BR /&gt;&lt;BR /&gt; lsof for hp can be downloaded from the porting and archiving center if you do not have it. Choose a mirror near you . &lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://hpux.connect.org.uk/" target="_blank"&gt;http://hpux.connect.org.uk/&lt;/A&gt;&lt;BR /&gt;I hope this miy be of some use &lt;BR /&gt;Mike</description>
      <pubDate>Mon, 24 Aug 2009 11:03:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484075#M362937</guid>
      <dc:creator>BUPA IS</dc:creator>
      <dc:date>2009-08-24T11:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484076#M362938</link>
      <description>Hello Raiden,&lt;BR /&gt;&lt;BR /&gt;You can also check:&lt;BR /&gt;# bdf /cbsora&lt;BR /&gt;# du -sk /cbsora&lt;BR /&gt;&lt;BR /&gt;There will be a good difference, as bdf gives usage counting the unkilled processes while du does not count these processes. &lt;BR /&gt;&lt;BR /&gt;This will give the output of processes which are using deleted files.&lt;BR /&gt;# lsof +aL1 /ora_temp &lt;BR /&gt;&lt;BR /&gt;List open files that are using file system /ora_temp&lt;BR /&gt;# lsof  /ora_temp&lt;BR /&gt;&lt;BR /&gt;As said you need to install lsof.&lt;BR /&gt;&lt;BR /&gt;Regds..</description>
      <pubDate>Mon, 24 Aug 2009 11:19:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484076#M362938</guid>
      <dc:creator>R.K. #</dc:creator>
      <dc:date>2009-08-24T11:19:56Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484077#M362939</link>
      <description>&amp;gt; fuser -ku&lt;BR /&gt; &lt;BR /&gt;This is a very dangerous command to use without first running fuser -u. It will kill processes that currently have the filesystem open and without knowing which processes are being killed, you could cause filesystem corruption.&lt;BR /&gt; &lt;BR /&gt;Secondly, fuser is pitifiully inadequate to discover the reason that a moutpoint is busy. It only works about 50% of the time. Your only choice is to download lsof (the right version for your OS). Then check the output carefully. You'll want to script a realiable method to terminate processes that have the mountpoint open. NOTE: a big problem involves users that login and then cd to the mountpoint directory -- not necessary or desirable. &lt;BR /&gt; &lt;BR /&gt;And if the oracle login uses /cbsora/ora10g as the HOME directory, change this immediately. There is no reason that the Oracle DBA has to be in this directory. I am sure that the DBA learned to cd to the directory to avoid typing long pathnames like /cbsora/ora10g/some-Oracle-command, but is is trivial top fix (set the DBA's $PATH correctly).</description>
      <pubDate>Mon, 24 Aug 2009 17:44:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484077#M362939</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-08-24T17:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484078#M362940</link>
      <description>@ BUPA IS &lt;BR /&gt;&lt;BR /&gt;Thanks for the solution . Its working perfectly as we wanted. Indeed it killed all the processes. Way better that fuser -ku&lt;BR /&gt;&lt;BR /&gt;I will implement this in our cluster halt script. &lt;BR /&gt;kill -9 `lsof -t /cbsora`&lt;BR /&gt;sleep 30&lt;BR /&gt;lsof /cbsora &lt;BR /&gt;&lt;BR /&gt;Hv now a Reason for cheering. Thanks again&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Aug 2009 11:32:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484078#M362940</guid>
      <dc:creator>raiden</dc:creator>
      <dc:date>2009-08-25T11:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484079#M362941</link>
      <description>&amp;gt; kill -9 `lsof -t /cbsora`&lt;BR /&gt; &lt;BR /&gt;Please, never use kill -9, especially on complicated applications and database programs. This is the worst possible way to terminate a program and almost guarantees corrupted data files. Although beginner Unix courses teach kill -9, they always leave out the serious consequences. &lt;BR /&gt; &lt;BR /&gt;There are many, many kill signals (man kill) and most can be handled within the program to perform an orderly shutdown. kill with no value (which is actually kill -15) is always the correct signal to stop a program. If the program needs another signal (and you have no documentation on what is proper), use kill -1 and then kill -2. Each of these signals can be sensed by a program or script to perform a proper close of open files and release shared memory.&lt;BR /&gt; &lt;BR /&gt;kill -9 is very dangerous in that it gives the program no chance at all to perform a proper shutdown. It should only be used manually (never in a script) when you can identify the program and know that a kill -9 will not damage files. kill -9 can leave shared memory badly fragmented and will require a reboot to fix. Your script needs to write the process names that are running into a log, then issue kill -15 for each PID, sleep for 10-20 seconds, then check again. Log any PIDs that still exist and issue kill -1 against those processes. When the script fails to stop all the processes, log the process names with ps -fpPID,PID.. so you can fix the broken code at a later time, then issue the kill -9.&lt;BR /&gt; &lt;BR /&gt;Complicated programs and databases must respond to kill -15, -1 or -2 or they must be repaired for proper operation.</description>
      <pubDate>Tue, 25 Aug 2009 14:40:03 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484079#M362941</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-08-25T14:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484080#M362942</link>
      <description>@ Bill&lt;BR /&gt;&lt;BR /&gt;Thanks for the Information Bill. It was valuable.&lt;BR /&gt;&lt;BR /&gt;But the problem which I am facing is on a database Server. During package halt the script is properly shutting down the database. &lt;BR /&gt;&lt;BR /&gt;The only processes utilising the /cbsora FileSystem are from the system level user logins ( which I guess must have been generated when database team users do sudo to oracle).&lt;BR /&gt;&lt;BR /&gt;SO i think i can safely execute kill -9 on these processes . Your advice please.</description>
      <pubDate>Tue, 25 Aug 2009 17:15:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484080#M362942</guid>
      <dc:creator>raiden</dc:creator>
      <dc:date>2009-08-25T17:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Filesystem not getting unmounted</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484081#M362943</link>
      <description>Yes, it is safe to kill these shell processes, but use kill -15 rather than kill -9. Then change the HOME location (/cbsora/ora10g) for the sudo logins. The ability to switch the package is much more important than the convenience of a DBA login. The key to automatically killing these processes is to first identify what they are and then use kill -15.</description>
      <pubDate>Wed, 26 Aug 2009 04:40:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/filesystem-not-getting-unmounted/m-p/4484081#M362943</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2009-08-26T04:40:13Z</dc:date>
    </item>
  </channel>
</rss>

