IBM Worklight v5.0.5 > WL server administration > InstallationCreate the Oracle databases
The installer can create the databases for if...
- You enter the name and password of the Oracle administrator
- The account can be accessed through SSH
Otherwise, create the databasees manually...
- Use the Oracle Database Configuration Assistant (DBCA) and follow the steps in the wizard to create a new general-purpose database named WRKLGHT:
- Use global database name WRKLGHT_your_domain, and system identifier (SID) WRKLGHT.
- On the Custom Scripts tab of the step Database Content, do not run the SQL scripts, because we need to create a user account first.
- On the Character Sets tab of the step Initialization Parameters, select...
- Unicode (AL32UTF8) character set
- UTF8 - Unicode 3.0 UTF-8 national character set
- Complete the procedure, accepting the default values.
- Repeat step 1 to create the IBM Worklight reports database.
Use global database name WLREPORT_your_domain and SID WLREPORT.
- Repeat step 1 to create the Application Center database.
Use global database name APPCNTR_your_domain and SID APPCNTR.
- Create the users either using Oracle Database Control, or using the Oracle SQLPlus command-line interpreter.
Create the user for the WRKLGHT database using Oracle Database Control:
- Connect as SYSDBA.
- Go to the Users page:
- In Oracle 10.2(g), click Administration, then Users.
- In Oracle 11.2(g), click Server, then Users in the Security section.
- Create a user named worklight with the following attributes:
Profile DEFAULT Authentication password Default table space USERS Temporary table space TEMP Status UNLOCK Add role CONNECT Add role RESOURCE Add system privilege CREATE VIEW Add system privilege UNLIMITED TABLESPACE
- Repeat the previous step to create the user worklight for the IBM Worklight report database, WLREPORT.
- Repeat the previous step to create the user worklight for the Application Center database, APPCNTR.
To create the user for all three databases with Oracle SQLPlus...
CONNECT system/<system_password>@WRKLGHT
CREATE USER worklight IDENTIFIED BY worklight;
GRANT CONNECT TO worklight;
GRANT RESOURCE TO worklight;
GRANT CREATE VIEW TO worklight;
DISCONNECT;
CONNECT system/<system_password>@WLREPORT
CREATE USER worklight IDENTIFIED BY worklight;
GRANT CONNECT TO worklight;
GRANT RESOURCE TO worklight;
GRANT CREATE VIEW TO worklight;
DISCONNECT;
CONNECT system/<system_password>@APPCNTR
CREATE USER worklight IDENTIFIED BY worklight;
GRANT CONNECT TO worklight;
GRANT RESOURCE TO worklight;
GRANT CREATE VIEW TO worklight;
DISCONNECT;
Parent Installation