Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Code Block
languagesql
CREATE USER dspace IDENTIFIED BY dspace;
GRANT CONNECT TO dspace;
GRANT CREATE TABLE TO dspace;
GRANT CREATE SEQUENCE TO dspace;
GRANT CREATE VIEW TO dspace;
GRANT UNLIMITED TABLESPACE TO dspace;

(Thanks to ~pottingerhj@umsystem.edu user-6062e for the SQL statements.)

Info

The remainder of this how-to assumes that you wish to run a test DSpace instance in the virtual machine. If you prefer to run DSpace on the host machine instead, you could instead set up port forwarding for the Virtualbox appliance and use only the database in the virtual machine. In that case, skip the rest of this how-to.

...