- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to use PFS on HPUX 10.20?
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-27-1999 07:43 PM
11-27-1999 07:43 PM
How to use PFS on HPUX 10.20?
installation manual, It said that I must use PFS filesystem support in order to
mount the Oracle CDROM which is Rockridge format, and I would see the long file
name.But when I type the command:
nohup /usr/sbin/pfs_mountd &
it prompt:
Unable to register(MOUNT_PROGRAM,MOUNT_VERSION,udp)
then it refuse to work, What's wrong?How can I use PFS?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-1999 06:04 AM
11-28-1999 06:04 AM
Re: How to use PFS on HPUX 10.20?
Oracle Installations/Upgrades. Make sure you have the required entry in the
/etc/pfs_fstab file before you do any mounts. e.g.
/dev/dsk/c5t2d0 /SD_CDROM pfs-rrip xlat=unix 0
Here's the rockon script. chmod it to execute of course.
# cat rockon
nohup /usr/sbin/pfs_mountd &
echo "wait 5 secs\n"
sleep 5
nohup /usr/sbin/pfsd &
echo "wait 5 secs\n"
sleep 5
/usr/sbin/pfs_mount /SD_CDROM
echo "Rockwell Format is Mounted -- Try ls /SD_CDROM"
=================
To unmount
/usr/sbin/pfs_umount /SD_CDROM
=================
Only problem with the script is that when you unmount the cdrom you got to
clean up the stray pfs daemons. It's not self cleaning. One of these days I
might add to the script.
Regards, Rich
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-1999 08:45 AM
11-28-1999 08:45 AM
Re: How to use PFS on HPUX 10.20?
to check if you are still having problems. With HP-UX 10.20 there is a PFS
cumulative patch PHCO_15453 make sure that this is the current one as it maybe
superseded, make sure this is installed.
NFS needs to be running for pfs to work, you can use rpcinfo -p to check this
and look for mountd and NFS if you do not find these you need to enable the NFS
server and client.
Edit the following file /etc/rc.config.d/nfsconf
and change
NFS_SERVER=1
NFS_CLIENT=1
START_MOUNTD=1
If you changed any of these variables issue a stop and start to NFS
i.e
/sbin/init.d/nfs.server stop
/sbin/init.d/nfs.server start
/sbin/init.d/nfs.client stop
/sbin/init.d/nfs.client start
From here on Richards script should work.
regards,
AG
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-28-1999 08:36 PM
11-28-1999 08:36 PM
Re: How to use PFS on HPUX 10.20?
This is the workaround:
You need to be sure that the user "root" is a member in eight
groups(/etc/logingroup) or less.
Hope this helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-1999 06:02 AM
12-01-1999 06:02 AM
Re: How to use PFS on HPUX 10.20?
Type in (as root)
pfs_mountd & (background is necessary according man pages)
pfsd &
pfs_mount /dev/dsk/xxxxxxx /cdrom
su - oracle7 (assuming you have this user)
cd /cdrom/orainst
./orainst
Doing this, the upgrade worked fine.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-1999 09:10 AM
12-01-1999 09:10 AM
Re: How to use PFS on HPUX 10.20?
will work.
One it's fairly easy to see if you have a Oracle CDROM mounted remotely or even
locally.
Two, It confuses the heck out of the Oracle DBA's who work with the cdroms and
are expecting /SD_CDROM as per Oracle Documentation. They are not System
Administrators in many cases and will wave the ORACLE documentation in your
face.
I should put a third reason here. the pfs_mount (Rockwell) is distinctly
different from the normal HP cdroms and should be kept separate. You will
avoid many horror stories. I know perfectly well that pfs stands for the
"portable file system". But, enough said here.
Rich