- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Errors cmcheckconf : Nonexistent file: HDBXPR.
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
05-02-2005 02:06 PM
05-02-2005 02:06 PM
Errors cmcheckconf : Nonexistent file: HDBXPR.
Begin package verification...
"-p" option specified. Opening package reference file: HDBXPR.
cmcheckconf : Nonexistent file: HDBXPR.
The HDBXPR package exists. Also the HDXPR.conf file exists.
Can anyone tell me why I am getting this error.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 02:18 PM
05-02-2005 02:18 PM
Re: Errors cmcheckconf : Nonexistent file: HDBXPR.
cmcheckconf -v -P /etc/cmcluster/pkgdir/pkgname.config
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 02:42 PM
05-02-2005 02:42 PM
Re: Errors cmcheckconf : Nonexistent file: HDBXPR.
Thanks.
Now I am getting errors trying to mount file systems in the package.
fsck: /etc/default/fs is used for determining the file system type
vxfs fsck: cannot stat /dev/vgHDB/rlvHDBoravl10
ERROR: Function check_and_mount
ERROR: Failed to fsck one of the logical volumes.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 02:56 PM
05-02-2005 02:56 PM
Re: Errors cmcheckconf : Nonexistent file: HDBXPR.
# vgchange -a e /dev/vgname
# fsck -F vxfs -o full /dev/vgname/rlvol
# vgchange -a n /dev/vgname
man fsck_vxfs
hope this helps,
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2005 02:59 PM
05-02-2005 02:59 PM
Re: Errors cmcheckconf : Nonexistent file: HDBXPR.
-denver
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2005 01:06 AM
05-04-2005 01:06 AM
Re: Errors cmcheckconf : Nonexistent file: HDBXPR.
With the package down, attempt to activate the VG:
# vgchange -a e /dev/vgHDB
And then fsck the file system:
# fsck /dev/vgHDB/rlvHDBoravl10
Isolate the cause to the actual issue. Remember that the package control script only automates a series of HP-UX commands. In most cases, you can do all the steps manually to try to identify the source of the failure.
If all of the commands work manually, inspect the package control script to see if any of the lines that you added have syntax errors. For instance, if the package controls multiple volume groups, or fsck's and mounts multiple file systems, insure that the array index number increments consecutively for each entry.
Example:
VG[0]="vg12"
VG[1]="vg13"
....
LV[0]="/dev/vg01/lvol1"; FS[0]="/PKG1.1"; FS_MOUNT_OPT[0]="-o rw"; FS_UMOUNT_OPT[0]=""; FS_FSCK_OPT[0]=""; FS_TYPE[0]=""
LV[1]="/dev/vg01/lvol2"; FS[1]="/PKG1.2"; FS_MOUNT_OPT[1]="-o rw"; FS_UMOUNT_OPT[1]=""; FS_FSCK_OPT[1]=""; FS_TYPE[1]=""