Search This Blog

Monday, November 21, 2011

OVS repositories are not mounted after server reboot.

repositories are not getting initialized after server reboot.

It has been observed in OVM 2.2.1 that after the server reboot repositories are not getting initialized.

After checking the log files i came to know that Network was unreachable during the initial ovs-agent startup.

So we have made some manual changes to make sure first the server should be in network and then the ovs-agent should be started.

Created a script called ovs-repo and saved it in /etc/init.d

# cat /etc/init.d/ovs-repo
#!/bin/sh
# chkconfig: 2345 99 02
# description: restart ovs agent
#

echo "Waiting for 30 sec's for ovs repository initialization"
sleep 60
service ovs-agent stop
service ovs-agent start

Later created soft link in /etc/rc3.d/
#ln -s /etc/init.d/ovs-repo /etc/rc3.d/S99ovs-repo

added the service in chkconfig
#chkconfig --add ovs-repo

No comments:

Post a Comment