- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: pfs_mountd process dies
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
Discussions
Discussions
Discussions
Forums
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
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
тАО08-28-2002 05:42 AM
тАО08-28-2002 05:42 AM
pfs_mountd process dies
I am trying to install Oracle8i on HP-UX 11.0. To mount oracle cdrom i need to use rockridge format, so i run pfs_mountd & and the run pfsd &.
but when i see 'ps -ef |grep pfs' I find only pfs and ofs.rpc
The process pfs_mountd and pfs_mountd.rpc does not exist. I tried restarting the server too. Doesnt really help. I have also checked that we have PHCO_16438(PFS patch) applied to our system.If anyone could help it wud be great.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2002 05:46 AM
тАО08-28-2002 05:46 AM
Re: pfs_mountd process dies
Did you try a 'nohup' command in front of the 'pfs' command? This will keep the daemons running even if you logout from your current session.
# nohup pfs_mountd ...
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2002 05:51 AM
тАО08-28-2002 05:51 AM
Re: pfs_mountd process dies
BR,
Jannik
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2002 05:59 AM
тАО08-28-2002 05:59 AM
Re: pfs_mountd process dies
open a file /etc/pfs_fstab
make the entry:
/dev/dsk/cxtxdx /cdrom pfs-rrip xlat=unix 0 0
save and close the file.
#pfs_mountd&
#pfsd&
#pfs_mount /cdrom
should mount the oracle CD.
If this fails check for 'nfs' daemons (ps -aef|grep nfs) restart the nfs daemons(/sbin/init.d/nfs.server stop/start,
/sbin/init.d/nfs.cliet stop/start)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2002 06:00 AM
тАО08-28-2002 06:00 AM
Re: pfs_mountd process dies
You need to do this:
1. nohup /usr/sbin/pfs_mountd &
2. nohup /usr/sbin/pfsd &
3. /usr/sbin/pfs_mount -t rrip -x unix /dev/dsk/c4t2d0 /SD_CDROM
4. /usr/sbin/pfs_umnount /SD_CDROM
There are some patches that can be installed for v11 that will let you do a normal mount of
mount -F cdfs -o rr /dev/dsk/c?d?t? /cdrom
its much easier to install these patches first then you can mount oracle CD's using the normal mount command - much easier!
PHCO_26449 1.0 Add Rock Ridge extension to mount_cdfs(1M)
PHKL_26448 1.0 Y2k; Rock Ridge extension for ISO-9660
PHKL_26450 1.0 Rock Ridge extension for ISO-9660
for 11.0
regards seba
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2002 06:05 AM
тАО08-28-2002 06:05 AM
Re: pfs_mountd process dies
You must have 'nfs' and 'mountd' running to use 'pfs_mount'.
# rpcinfo -p ...should show the presence of these processes
To ensure that these are started at bootup, edit '/etc/rc.config.d/nfsconf' to specify:
NFS_CLIENT=1
NFS_SERVER=1
NUM_NFSD=4
START_MOUNTD=1
To circumvent the use of the (awful) 'pfs_mount' you can download an apply the following patches for 11.0:
PHKL_26448
PHCO_26449
PHKL_26450
Obviously, a reboot will be required to install these, but you find that the solution is far superior to 'pfs_mount'.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-28-2002 09:58 AM
тАО08-28-2002 09:58 AM
Re: pfs_mountd process dies
in addition to what JRF already wrote, AFTER the reboot you can use good old "mount" with the new option "-o rr" to mount a CD-ROM with the so-called RockRidge extensions...
HTH,
Wodisch