1. | Copy the data folder to the desired location. |
2. | Edit the /WEB-INF/swm.properties file to modify every instance of the string ./data to use the new file location. For example, the following lines can change from: app.vm.folder.path=./data/vm app.devices.folder.path=./data/devices app.sessions.folder.path=./data/sessions to read in Windows :
app.vm.folder.path=C:/WebManagerData/vm app.devices.folder.path=C:/WebManagerData/devices app.sessions.folder.path=C:/WebManagerData/sessions or in UNIX :
app.vm.folder.path=/WebManagerData/vm app.devices.folder.path=/WebManagerData/devices app.sessions.folder.path=/WebManagerData/sessions In this properties file, Windows paths must always use forward slashes (/) instead of back slashes (\).
|