...
cd D:\GX-WebManager\webmanager-mywebsite mvn -s settings.xml -P create-mysql-db # If the content of JCR should be stored in another DB, then run: # mysqladmin create wm9mywebsite_jcr -u root -p
Actions for Oracle
Use SQL Plus, for example, to create the database(s). Run the webmanager-oracle-scripts.sql
script located in the D:\XperienCentral\webmanager-mywebsite\webmanager-sqlscripts\
directory.
Actions for MSSQL
cd D:\GX-WebManager\webmanager-mywebsite
mvn -s settings.xml -P create-mssql-db
# If the content of JCR should be stored in another DB, then
# create the DB using the Enterprise Manager
The default MySQL settings need to be adjusted to make it work smoothly with XperienCentral. Add the following properties and values to the the my.ini
file file. It is located at e.g g C:\ProgramData\MySQL\MySQL Server 5.7.
The initial contents of this file should be:
...
For MySQL versions 5.7 and higher, add the following to the the [mysqld]
section section:
Code Block | ||
---|---|---|
| ||
optimizer_switch = derived_merge=off |
...
Warning |
---|
Restart the MySQL service (Windows Task Manager > Services) whenever you modify the file |
Actions for Oracle
Use SQL Plus, for example, to create the database(s). Run the webmanager-oracle-scripts.sql
script located in the D:\XperienCentral\webmanager-mywebsite\webmanager-sqlscripts\
directory.
Actions for MSSQL
cd D:\GX-WebManager\webmanager-mywebsite
mvn -s settings.xml -P create-mssql-db
# If the content of JCR should be stored in another DB, then
# create the DB using the Enterprise Manager
...
Installing the XperienCentral Release
...