RMsis requires it's own independent database. This section contains instructions for setting up all the supported versions of Databases.
...
Code Block |
---|
$ mysql -uroot -ppassword mysql> create database rmsis character set utf8 ; mysql> grant all on rmsis.* to 'username'@'hostname' identified by 'new_user_password'; mysql> exit; |
Note (known issue) :
Mysql database only supports 3 byte UTF8 characters if the default 'utf8' character set is chosen.
For 4byte UTF8 support, 'utf8mb4' character set needs to be chosen in Mysql. However, 'utf8mb4' character set is not supported by RMsis at present.
This issue is logged as RMI-3474 in our CRM.
- Due to this issue, you may experience unexpected behaviour and/or failure to access RMsis if a 4 byte UTF8 character is entered in a field in RMsis.
PostgreSQL
- Create a database user which RMsis will connect as (e.g. rmsis
dbuser
). This user will be used to configure RMsis's connection to this database in subsequent steps. Create a database for RMsis (e.g. rmsis) with Unicode collation.
Code Block CREATE DATABASE rmsis WITH ENCODING 'UNICODE';
Or from the command-line:
Code Block $ createdb -E UNICODE rmsis
- Ensure that the user has permissions to connect to the database, and to create and write to tables in the database.
...
Currently, RMsis supports Oracle 11G and later versions.
Database Setup using Oracle
- Ensure that you have a database instance available for RMsis (either create a new one or use an existing one).
- Within that database instance, create a user which RMsis will connect as (e.g. rmsisuser).
- create user <rmsisuser> identified by <user_password> default tablespace <tablespace_name> quota unlimited on <tablespace_name>;
- Notes :
- When you create a user in Oracle, Oracle will create a 'schema' automatically.
- When you create a user, the tablespace for the table objects must be specified.
- Ensure that the user has the following permissions:
- grant connect to <rmsisuser>;
- grant create table to <rmsisuser>;
- grant create sequence to <rmsisuser>;
- grant create trigger to <rmsisuser>;
Database Configuration for Oracle
Attribute | Value |
---|---|
Database Type | select "Oracle" |
Hostname | Enter hostname or the IP address of the database |
Port | TCP port number of the database server (by default 1521 for Oracle) |
Database | Enter the name of the database/SID to connect (The Oracle "System Identifier". The default value for most Oracle servers is 'ORCL'. If you are using the Oracle Express Edition, this will be 'XE'.) |
Username | Enter username to access the database |
Password | Password to access the database. |
...