Changes between Version 13 and Version 14 of Opal HowTo Install


Ignore:
Timestamp:
07/02/15 12:52:12 (9 years ago)
Author:
Richard Bramley
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Opal HowTo Install

    v13 v14  
    8686'''Actually these both look OK, with the exception that the collation is utf8_general_ci, so I will just change that'''
    8787
     88=== 2. Create Databases
     89
     901. Create the following script:
     91
     92{{{
     93# Create Opal database and user.
     94#
     95# Command: mysql -u lampuser -p < create_opal_database.sql
     96#
     97 
     98CREATE DATABASE opal_data CHARACTER SET utf8 COLLATE utf8_bin;
     99 
     100CREATE USER 'opal_data' IDENTIFIED BY '<opal-data-user-password>';
     101GRANT ALL ON opal_data.* TO 'opal_data'@'localhost' IDENTIFIED BY '<opal-data-user-password>';
     102FLUSH PRIVILEGES;
     103
     104CREATE DATABASE opal_identifiers CHARACTER SET utf8 COLLATE utf8_bin;
     105 
     106CREATE USER 'opal_identifiers' IDENTIFIED BY '<opal-identifiers-user-password>';
     107GRANT ALL ON opal_identifiers.* TO 'opal_identifiers'@'localhost' IDENTIFIED BY '<opal-identifiers-user-password>';
     108FLUSH PRIVILEGES;
     109}}}
     110
     1112. Change the passwords to something appropriate
     1123. Run the script like it says in the command comment at the top of the script.
     113
    88114== Installing RServe
    89115