- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: PFS mount and Oracle 7.3.4 CD!
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
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
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-01-2001 02:26 AM
тАО11-01-2001 02:26 AM
PFS mount and Oracle 7.3.4 CD!
NFS SERVER
Any ideas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 02:38 AM
тАО11-01-2001 02:38 AM
Re: PFS mount and Oracle 7.3.4 CD!
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 02:49 AM
тАО11-01-2001 02:49 AM
Re: PFS mount and Oracle 7.3.4 CD!
In '/etc/rc.config.d/nfsconf' make sure the following are set as shown:
NFS_CLIENT=1
NFS_SERVER=1
NUM_NFSD=4
START_MOUNTD=1
Then stop and restart the client and server, as:
# /sbin/init.d/nfs.server stop
# /sbin/init.d/nfs.client stop
# /sbin/init.d/nfs.server start
# /sbin/init.d/nfs.client start
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 04:01 AM
тАО11-01-2001 04:01 AM
Re: PFS mount and Oracle 7.3.4 CD!
I was facing the same problem while installing 7.3.4. After setting the system as NFS server/client(as told by JRF) and staring pfs_mountd and pfsd daemons, i was able to install.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 04:02 AM
тАО11-01-2001 04:02 AM
Re: PFS mount and Oracle 7.3.4 CD!
I was facing the same problem while installing 7.3.4. After setting the system as NFS server/client(as told by JRF) and staring pfs_mountd and pfsd daemons, i was able to install.
(don't forget to create /etc/pfs_fstab file)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 04:06 AM
тАО11-01-2001 04:06 AM
Re: PFS mount and Oracle 7.3.4 CD!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 05:08 AM
тАО11-01-2001 05:08 AM
Re: PFS mount and Oracle 7.3.4 CD!
You just need to start the NFS related
dameons and this is done as follows:
****
Edit /etc/rc.config.d/nfsconf
-> and make NFS_SERVER=1
NFS_CLIENT=1
START_MOUNTD=1
NUM_NFSD=4
/sbin/init.d/nfs.client stop
/sbin/init.d/nfs.server stop
/sbin/init.d/nfs.server start
/sbin/init.d/nfs.client start
***
NFS components need to run for PFS to
work, since PFS uses NFS to import
CD ROM disks to the local system ! One
of the many quirks of PFS.
Next:
For PFS_MOUNTING the CD:
do:
1)Edit /etc/pfs_fstab file
/dev/dsk/cxtydz /SD_CDROM pfs-rrip xlat=unix 0 0
2)
nohup /usr/sbin/pfs_mountd &
nohup /usr/sbin/pfsd &
3) pfs_mount /SD_CDROM
*****
The order is very important.
HTH
raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 06:49 AM
тАО11-01-2001 06:49 AM
Re: PFS mount and Oracle 7.3.4 CD!
After fixing the NFS Server routine, proceed with the pfs mount in this manner.
edit /etc/pfs_fstab and make an entry
/dev/dsk/cd_device /cdrom pfs-rrip xlat=unix 1 0
Run these commands
# nohup pfs_mount &
# nohup pfsd &
# pfs_mount /cdrom
# bdf
You should now be able to access the cdrom.
You can try and disable the automounter if you are not using the same. To do that edit /etc/rc.config.d/nfsconf and modify the entry AUTOMOUNT=1 to AUTOMOUNT=0. Do a "ps -ef" and kill the process running for "automount".
Hope this helps.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 07:21 AM
тАО11-01-2001 07:21 AM
Re: PFS mount and Oracle 7.3.4 CD!
and do NOT forget to "pfs_umount" the CD-ROM immediately after the installation, and then killing the two daemons POLITELY (not with kill -9!), or you will need a reboot to free the CD from its drive :-(
Just my $0.02,
Wodisch
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 07:59 AM
тАО11-01-2001 07:59 AM
Re: PFS mount and Oracle 7.3.4 CD!
Once you are done with the job, do a "pfs_umount /cdrom" to unmount the CD and then you have to kill four processes.
pfs_mountd
pfsd
pfs_mountd.rpc
pfsd.rpc
Hope this helps.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО11-01-2001 08:24 AM
тАО11-01-2001 08:24 AM
Re: PFS mount and Oracle 7.3.4 CD!
Can someone put me straight here?
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-06-2001 06:42 AM
тАО12-06-2001 06:42 AM
Re: PFS mount and Oracle 7.3.4 CD!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО12-06-2001 08:14 AM
тАО12-06-2001 08:14 AM
Re: PFS mount and Oracle 7.3.4 CD!
#rpcinfo -p
150001 2 udp 776 pcnfsd
150001 1 tcp 779 pcnfsd
150001 2 tcp 779 pcnfsd
536870917 3 udp 680
536870917 3 tcp 682
131078 4 udp 683
131078 4 tcp 686
100003 2 udp 2049 nfs
The odd ones are used for PFS and they have a strange looking program number. Not sure if this has anything to do with it...
I dump the Oracle cd to a filesystem with cpio and install it from disk. That is if you can mount it and dump the contents before it hangs!
Tony