ACFS mount points are not comming up after server Reboot

Hi Admin,

Some mount point issue is occured in my database environment. ACFS mount points are not mounted automatically when server is rebooted.. Which script we can write in order to make it mount.. I believe we can write and load the script at /etc/rc.local .  Can you share some shell  scripts which can easily can take care and would start the ACFS disks automaticalyy.

 

Thanks & Regards,

Poshan

Default Asked on August 18, 2018 in ORACLE.
Add Comment
1 Answer(s)

To configure Autostart of ACFS drivers during node reboot on Linux

++ Add an acfsload start command in /etc/rc.local.so they are automatically loaded during node bootup

Example

cat /etc/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don’t
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local
/sbin/modprobe hangcheck-timer
/u01/app/oracle/11.2.0/grid/bin/acfsload start –s
devlabel restart

Another way would be to create an init script ( acfsload ) and place it in /etc/init.d

acfsload
——–
#!/bin/sh
# chkconfig: 2345 30 21
# description: Load Oracle ACFS drivers at system boot
<GI Home>/bin/acfsload start -s

 

Regards
Admin
Newbie Answered on August 22, 2018.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.