- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: sap extension and Automounter/Auto FS Configur...
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-18-2007 11:16 PM
11-18-2007 11:16 PM
sap extension and Automounter/Auto FS Configuration
I'm running sg 11.16 with the sap extension.
When does the auto FS mount the file systems during boot?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 12:13 AM
11-19-2007 12:13 AM
Re: sap extension and Automounter/Auto FS Configuration
/etc/rc.log
Soon after boot.
Also see /sbin/rc2.d
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 12:29 AM
11-19-2007 12:29 AM
Re: sap extension and Automounter/Auto FS Configuration
Serviceguard packages generally do the following:
1) Activate the volume group on shared storage.
2) Mount any filesystems needed.
This is all done in the package control script.
Serviceguard is triggered in /sbin/rc3.d
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 01:10 AM
11-19-2007 01:10 AM
Re: sap extension and Automounter/Auto FS Configuration
So at boot time, the NFS mounts are active at all.
HTH
Duncan
I am an HPE Employee

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 02:26 AM
11-19-2007 02:26 AM
Re: sap extension and Automounter/Auto FS Configuration
mount
that will display automount file systems - and if you cd to them or ll them, then they will mount.
If the file system is exported/shared from serviceguard, then it will only be available when the package is running.
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 02:58 AM
11-19-2007 02:58 AM
Re: sap extension and Automounter/Auto FS Configuration
the automounter only mounts shares on demand.
So if no SAP proc is trying to access files from the share nothing gets mounted.
I am not sure what your objective is.
But maybe it's the same pain that I felt when I occasionally needed to integrate another SAP share to the exports, but didn't want to restart the package after having modified sap.conf for this minor task which didn't require a package restart at all.
On the other hand I found it hard to remember after long config change periods what exactly the SAP shares to be exported were and what options they used.
So I wrote this simple script that sources sap.conf (after having edited it) and reexports everything.
$ cat reexport.sh
#!/usr/bin/sh
SAPSYSTEMNAME=BlaBla
SAPCONF=/etc/cmcluster/$SAPSYSTEMNAME/sap.conf
if [ -f $SAPCONF ]; then
. $SAPCONF
else
echo "Cannot stat $SAPCONF"
exit 1
fi
echo "Unexporting $SAPSYSTEMNAME shares"
exportfs -uv ${SXFS[*]}
typeset -i i=0
while ((i<${#SXFS[*]}));do
[[ -z ${SXFS[$i]} ]] && continue
echo "Exporting $SAPSYSTEMNAME share ${SXFS[$i]}"
exportfs -v -i -o ${OPFS[$i]} ${SXFS[$i]}
((i+=1))
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2007 03:09 AM
11-19-2007 03:09 AM
Re: sap extension and Automounter/Auto FS Configuration
You also would need an automounter map
which usually becomes a direct map
in /etc/auto_direct (or whatever your auto_master refers to).
There you would add an entry similar to
/sapmnt/SAPSID pkg_virt_host:/export/sapmnt/SAPSID
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-21-2007 10:25 PM
11-21-2007 10:25 PM