- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Trying to mount Oracle CD using pfs_mount
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
10-27-2000 06:29 AM
10-27-2000 06:29 AM
I'm trying to install Oracle 8.0.5 on HP-UX 10.20. Here is the output of the commands that i entered.
# cat pfs_fstab
/dev/rdsk/c1t2d0 /SD_CDROM pfs-rrip xlat=unix,soft 1 0
(When I issue the following command, it hangs after saying Sending output to nohup.out)
# nohup /usr/sbin/pfs_mountd &
Sending output to nohup.out
so I did a Ctrl+C to come out of it and killed the pfs process, and issued the following commands,
# pfs_mountd &
# pfsd &
# /usr/sbin/pfs_mount /SD_CDROM
Usage: /usr/sbin/pfs_mount [-v -f -t -o -x [type|option|xlat] ... [mount_device
] [ mount_point ]
since it did not take the previous command, i used the following:
# /usr/sbin/pfs_mount -o xlat=unix /dev/rdsk/c1t2d0 /SD_CDROM
/usr/sbin/pfs_mount: pfs_mountd at qft157:/dev/rdsk/c1t2d0 not responding: : RPC
_TIMED_OUT
/usr/sbin/pfs_mount: retrying /SD_CDROM
/usr/sbin/pfs_mount: giving up on /SD_CDROM
#
Could anyone tell me what I'm doing wrong.
Thanks so much,
Sri
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2000 06:34 AM
10-27-2000 06:34 AM
SolutionOnce youve managed to hang pfs_mount you really need to reboot to cleanup before re-attempting it. We use the following /etc/pfs_fstab file;
#Mount Oracle CDROM
/dev/rdsk/c3t2d0 /SD_CDROM pfs-rrip xlat=unix,soft 1 0
Works fine. And a special script to start the pfs daemons;
# Start pfs daemons
X=`ps -ef|grep pfs|grep -v grep|wc -l`
if [ $X -gt 1 ]
then
echo "nPFS processes already running! n"
ps -ef|grep pfs|grep -v grep
exit 1
fi
cd /tmp
nohup /usr/sbin/pfs_mountd -v &
sleep 10
nohup /usr/sbin/pfsd 4 -v &
sleep 10
# To mount a Rock-Ridge CD-ROM
# /usr/sbin/pfs_mount -x unix -o nosuid /dev/rdsk/c3t2d0 /SD_CDROM
# To mount an Oracle CD see /etc/pfs_fstab, just do> pfs_mount /SD_CDROM
# NOTE: use /dev/rdsk for CD device, its more reliable
/usr/sbin/pfs_mount /SD_CDROM
bdf
These procedures work for us 100% of the time. As long as you have the up-to-date pfs patch; (for 11) PHCO_16438
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2000 06:46 AM
10-27-2000 06:46 AM
Re: Trying to mount Oracle CD using pfs_mount
/dev/dsk/c6t2d0 /SD_CDROM pfs-rrip retry=3,soft,intr,xlat=unix 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2000 06:54 AM
10-27-2000 06:54 AM
Re: Trying to mount Oracle CD using pfs_mount
A note of caution by which you will avoid trouble.
Killing the pfs daemons is downright risky! You can find yourself unable to do 'bdf' and 'ls' commands while your server's CPU utilization climbs and climbs.
You might see messages like: "NFS server XXX not responding still trying".
At this point you have to bite the bullet and reboot.
If you absolutely must kill the daemons, do so in the reverse order that you started them.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2000 07:38 AM
10-27-2000 07:38 AM
Re: Trying to mount Oracle CD using pfs_mount
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2000 08:00 AM
10-27-2000 08:00 AM
Re: Trying to mount Oracle CD using pfs_mount
Thanks again,
Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2000 09:21 AM
10-30-2000 09:21 AM
Re: Trying to mount Oracle CD using pfs_mount
There was a problem in oracle installation on friday and we're trying to do it all over again today but I'm getting the same problem as before while mounting the cdrom.
This is what i did:-
cd /tmp
nohup /usr/sbin/pfs_mountd -v &
sleep 10
nohup /usr/sbin/pfsd 4 -v &
sleep 10
# ps -ef|grep pfs
root 2399 2378 0 12:02:45 ttyp1 0:00 /usr/sbin/pfsd 4 -v
root 2401 2399 0 12:02:45 ttyp1 0:00 pfsd.rpc
root 2402 2399 0 12:02:53 ttyp1 0:00 pfsd.rpc
root 2403 2399 0 12:03:01 ttyp1 0:00 pfsd.rpc
root 2396 2378 0 12:02:35 ttyp1 0:00 /usr/sbin/pfs_mountd -v
root 2404 2399 0 12:03:09 ttyp1 0:00 pfsd.rpc
root 2442 2378 1 12:10:30 ttyp1 0:00 grep pfs
root 2398 2396 0 12:02:35 ttyp1 0:00 pfs_mountd.rpc
( In pfs_fstab file, the following line.)
/dev/rdsk/c1t2d0 /SD_CDROM pfs-rrip xlat=unix,soft 1 0
(Mounting the CDROM)
# /usr/sbin/pfs_mount -x unix -o nosuid /dev/rdsk/c1t2d0 /SD_CDROM
/usr/sbin/pfs_mount: /dev/rdsk/c1t2d0 on /SD_CDROM: read failed: No such device
@
/usr/sbin/pfs_mount: giving up on /SD_CDROM
#
I remember doing the same this and i was able to mount the oracle CD on friday. Please Help.
Thank you all so much.
Sri