-
Notifications
You must be signed in to change notification settings - Fork 2
/
README_MIGRATE_LOCAL.txt
42 lines (27 loc) · 1.13 KB
/
README_MIGRATE_LOCAL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Optionally run the migrate service using Tomcat:
-----
This file explains how to run and configure an instance of migrate on
your local machine, if you dont want to use the migrate instance at:
http://beta.projectmigrate.com.com/
-----
Follow the instructions below only if you want to setup your own
local migrate instance (advanced and optional):
Make sure that you have a mysql instance running with root
credentials as:
User: root
Pass: mysql
Copy the migrate.war binary to the Tomcat webapps directory:
cp $MIGRATE_SDK/migrate.war $CATALINA_HOME/webapps
$CATALINA_HOME/bin/shutdown.sh
$CATALINA_HOME/bin/startup.sh
Verify that the service is running by loading the following URL in a browser:
http://localhost:8080/
This location should display information about Migrate.
Debugging Tomcat
------
To debug problems with Tomcat, view the contents of the file:
$CATALINA_HOME/logs/catalina.out
or the log file named with the current date. Aside from simply running the
'cat' command in a shell, you can also have the contents printed live to a
console in a shell using the tail command as follows:
tail $CATALINA_HOME/logs/catalina.out