Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Start the virtual machine (as per instructions on the download page, use username+password oracle).

Set up the database

  1. Open a terminal and log on to the database as a superuser (password: oracle):

...

  1. Code Block
    sqlplus logon AS SYSDBA
    
    # NOTE: If you get at "invalid username/password; logon denied" error, try THIS COMMAND INSTEAD:
    sqlplus 'sys as sysdba'

...

  1. Then create the database user and database (which is referred to as a "schema" in oracle terms):  (Thanks to user-6062e for the SQL statements.)

    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;

...

Run DSpace Remotely OR Install DSpace on Virtual Machine

...