Page History
To You can keep your historical performance data and migrate your Uptime Infrastructure Monitor datastore from a MySQL database to SQL Server, please complete the following steps: .
To migrate from MySQL to SQL Server
- Stop the up.time Data Collector:
Code Block language sql Unix: #/etc/init.d/uptime_core stop
...
Windows: > net stop "up.time data collector"
...
- Dump the database:
Code Block language sql > /scripts/fulldatabasedump
...
- Set up the SQL Server database.
...
- Edit
...
- the <uptime_dir>\uptime.conf and <uptime_dir>\controller\resources\uptime_controller.conf file to point to the new database by commenting out the MySQL lines and uncommenting the SQL Server lines.
Code Block language sql #dbDriver=com.mysql.jdbc.Driver #dbType=mysql #dbHostname=localhost #dbPort=3308
...
#dbName=uptime #dbUsername=uptime #dbPassword=uptime
...
#example SQL Server configuration dbDriver=net.sourceforge.jtds.jdbc.Driver dbType=mssql
...
dbHostname=localhost dbPort=1433 dbName=uptime dbUsername=user dbPassword=password
...
- Stop the MySQL database:
Code Block language sql Unix: # /etc/init.d/uptime_datastore stop Windows: > net stop "up.time data store"
...
- Initialize the database:
Code Block language sql > /resetdb --nodata really
...
- Import the database to SQL Server:
Code Block language sql > /scripts/fulldatabaseimport
...
- Start the data collector:
Code Block language sql Unix: # /etc/init.d/uptime_core start Windows: > net start "up.time data collector"