【HPUX】What to do when mount does not work on HP-UX?
n a HP Serviceguard package log you may find an error “/dev/vgoracle/lvoproracle is already mounted, /opr_oracle is busy”
As a result the package does not start and fails immediately. What are the steps you can do?
Inspect the log file of the package in more details:
Sep 18 09:36:48 root@hpnode1 filesystem.sh[12309]: Logical Volume is /dev/vgoracle/lvoproracle Sep 18 09:36:48 root@hpnode1 filesystem.sh[12309]: Mounting /dev/vgoracle/lvoproracle with option -o largefiles UX:vxfs mount: ERROR: V-3-21264: /dev/vgoracle/lvoproracle is already mounted, /opr_oracle is busy, allowable number of mount points exceeded Sep 18 09:36:48 root@hpnode1 filesystem.sh[12309]: ERROR: Function sg_check_and_mount Sep 18 09:36:48 root@hpnode1 filesystem.sh[12309]: ERROR: Failed to mount /dev/vgoracle/lvoproracle
Perhaps, the file system /opr_oracle was not properly unmounted? Check this with the mount | grep opr_oracle command. If it is there then you could try the following (in sequence if necessary):
umount /opr_oracle umount /dev/vgoracle/lvoproracle umount -f /opr_oracle umount -f /dev/vgoracle/lvoproracle
If that does not help then check if there are still some processes running which prevent the file system from unmounting:
fuser -c /opr_oracle
To kill those processes just use the command fuser with option -k:
fuser -k /opr_oracle umount /opr_oracle
A last command to force an unmount is:
/sbin/fs/vxfs/vxumount -o force /opr_oracle
If all above did not help at help to resolve the start-up of the package then you probably hit the issue mentioned in article: . To fix the issue execute the following set of commands:
# ls /opr_oracle # rmdir /opr_oracle # ls /opr_oracle /opr_oracle not found # mkdir -m 755 /opr_oracle # cmrunpkg -n hpnode1 oracle Running package oracle on node hpnode1 Successfully started package oracle on node hpnode1 cmrunpkg: All specified packages are running # bdf /opr_oracle Filesystem kbytes used avail %used Mounted on /dev/vgoracle/lvoproracle 262144 2206 243697 1% /opr_oracle
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29487349/viewspace-1693031/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- What does "xargs grep" do?
- When you issue "ALTER TABLESPACE xxx READ ONLY",what will oracle do?Oracle
- How does a HashMap work in JAVAHashMapJava
- PostgreSQL 原始碼解讀(159)-PG Tools#6(What does pg_rewind do)SQL原始碼
- How does an Electric Motor work? (DC Motor)
- PostgreSQL 原始碼解讀(158)-PG Tools#5(pg_basebackup:what does db server do)SQL原始碼Server
- What is the Impact on the Database When Modifying the OS DateDatabase
- What are general rules when deciding on index?Index
- What Happens When You Open a Database (297)APPDatabase
- Bunder: What does :require => nil in Gemfile mean?UI
- [HPUX] UX:vxfs mount: ERROR: V-3-21264UXError
- mysql-proxy does not work with server/client authentication pluginsMySqlServerclientPlugin
- What problems does Google Wave solve?(轉載)Go
- CF 39E What Has Dirichlet Got to Do with That? (博弈)Go
- What can men do against such reckless hate?AI
- z-index does not work in Internet Explorer with pdf in iframeIndex
- Source Code Reading for Vue 3: How does `hasChanged` work?Vue
- 10. Does luck have anything to do with success?
- What is a deadlock and how does one fix deadlock errors?Error
- QUESTION :What kind of shared storage do you use for Oracle RAC?Oracle
- Login Oracle Instance Even When sysdba Cannot Do SoOracle
- What happens when exadata has lost two disks?(轉)APP
- SAP Retail Listing – How does it work (中英文對照版)AI
- The disp+work.exe is stopped after several minutes or stays in yellow status, what’s wrong?
- Setting title-center on "< h1> " element on Android does not work, fixAndroid
- Mount Options for Oracle files when used with NFS on NAS devices_359515.1OracleNFSdev
- What to Expect When Moving From SAP Business Suite to SAP S/4 HANAUI
- Vip Does Not Failover When Nodeapps Stopped (Doc ID 749160.1)AIAPP
- Oracle10g Export/Import DataPump Does Not Work with Tapes or UNIX Named Pipes [ID 276521.1]OracleExportImport
- How does ASM work with RAID where striping and mirroring are already built-in?ASMAIUI
- [HP-UX] vxfs mount:xxxx is corrupted.needs checkingUX
- Does Not Delete Archivelogs Even When They Already Backed Up To Tape_1607250.1deleteHive
- Agent Startup Fails When the Repository DB Does Not Support TZ of Agent-332131.1AI
- 【HPUX】HP-UX 11i 因特網和網路處理 - SSH 登入系統慢UX
- Bug 6083037 - Server side load balancing does not work [ID 6083037.8]ServerIDE
- What is the difference between Mysql InnoDB B+ tree index and hash index? Why does MongoDB use B-tree?MySqlIndexMongoDB
- HPUX 日誌UX
- GoldenGate - What is supported and what is not ....Go