Difference between revisions of "OVM Install from the Start"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) |
PeterHarding (talk | contribs) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Back to [[Oracle VM Manager]] | |||
=Intro= | =Intro= | ||
Got stuck last time with no IPs allocated to the VMs and could not boot them | Got stuck last time with no IPs allocated to the VMs and could not boot them | ||
=Drop Old Tables= | =Reinitialize VMMANAGER= | ||
Shut the service down: | |||
$ service ovmm stop | |||
==Drop Old Tables== | |||
<pre> | <pre> | ||
Line 55: | Line 63: | ||
DROP TABLE "ODOF_TYPE_TO_CLASS"; | DROP TABLE "ODOF_TYPE_TO_CLASS"; | ||
</pre> | </pre> | ||
==Retore the Database== | |||
Now restore the database: | Now restore the database: | ||
Line 60: | Line 70: | ||
$ imp ovs/xxxx file=/var/ovm/ovs_20110922_201611.dmp full=y | $ imp ovs/xxxx file=/var/ovm/ovs_20110922_201611.dmp full=y | ||
So have just dropped the OVM tables and done a restore of the DB taken just after the last installation. | |||
Then restarted the Oracle VM Manager service: | |||
$ service ovmm start | $ service ovmm start | ||
Line 70: | Line 80: | ||
I will now rebuild the vmserver and see where that leads... | I will now rebuild the vmserver and see where that leads... | ||
= | =Rebuild VMSERVER= | ||
=Reconstruct the Installation= | |||
[[Category:Oracle]] | [[Category:Oracle]] | ||
[[Category:OVM]] | [[Category:OVM]] | ||
[[Category:Oracle OVM]] |
Latest revision as of 12:35, 3 June 2016
Back to Oracle VM Manager
Intro
Got stuck last time with no IPs allocated to the VMs and could not boot them
Reinitialize VMMANAGER
Shut the service down:
$ service ovmm stop
Drop Old Tables
DROP TABLE "MGR_ABCSTORE"; DROP TABLE "MGR_ACCESSMANAGER"; DROP TABLE "MGR_ACTIONENGINEPROPERTIES"; DROP TABLE "MGR_ACTIONMANAGER"; DROP TABLE "MGR_ARCHIVEMANAGER"; DROP TABLE "MGR_BACKUPMANAGER"; DROP TABLE "MGR_BUSINESSMANAGER"; DROP TABLE "MGR_COHERENCE"; DROP TABLE "MGR_DISCOVERENGINEPROPERTIES"; DROP TABLE "MGR_DISCOVERMANAGER"; DROP TABLE "MGR_EVENTENGINEPROPERTIES"; DROP TABLE "MGR_EVENTLOG"; DROP TABLE "MGR_EVENTMANAGER"; DROP TABLE "MGR_FILEMANAGER"; DROP TABLE "MGR_FOUNDRY"; DROP TABLE "MGR_HASHMAP"; DROP TABLE "MGR_INFORMATIONALEVENT"; DROP TABLE "MGR_INTERNALSYSTEMLOG"; DROP TABLE "MGR_LINKEDLIST"; DROP TABLE "MGR_LOGENGINEPROPERTIES"; DROP TABLE "MGR_LOGMANAGER"; DROP TABLE "MGR_LOGSTORE"; DROP TABLE "MGR_MODELENGINEPROPERTIES"; DROP TABLE "MGR_MODELMANAGER"; DROP TABLE "MGR_OBJECTCHANGEEVENT"; DROP TABLE "MGR_PROPERTIES"; DROP TABLE "MGR_RASENGINEPROPERTIES"; DROP TABLE "MGR_RASMANAGER"; DROP TABLE "MGR_RESTOREMANAGER"; DROP TABLE "MGR_ROLESERVICE"; DROP TABLE "MGR_ROOTSTATISTICLOG"; DROP TABLE "MGR_RULESENGINEPROPERTIES"; DROP TABLE "MGR_RULESMANAGER"; DROP TABLE "MGR_SCHEDULABLETASKPROPERTIES"; DROP TABLE "MGR_SERVERNOTIFICATION"; DROP TABLE "MGR_SERVERYUMREPOSITORYINFORMA"; DROP TABLE "MGR_STATISTICMANAGER"; DROP TABLE "MGR_TASKENGINEPROPERTIES"; DROP TABLE "MGR_TASKMANAGER"; DROP TABLE "MGR_TREESTORE"; DROP TABLE "MGR_USERACCOUNT"; DROP TABLE "MGR_USERSTORE"; DROP TABLE "MGR_VNICMANAGER"; DROP TABLE "MGR_VNICMANAGERPROPERTIES"; DROP TABLE "ODOF_ID_TO_TYPE"; DROP TABLE "ODOF_NOT_TABLED"; DROP TABLE "ODOF_SYS_PROPERTIES"; DROP TABLE "ODOF_TYPE_TO_CLASS";
Retore the Database
Now restore the database:
$ imp ovs/xxxx file=/var/ovm/ovs_20110922_201611.dmp full=y
So have just dropped the OVM tables and done a restore of the DB taken just after the last installation.
Then restarted the Oracle VM Manager service:
$ service ovmm start
and a few minutes later the application was available again.
I will now rebuild the vmserver and see where that leads...