Versions Compared

Key

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

...

  1. To start,  clone and build the latest release of the mill

    Code Block
    git clone https://github.com/duracloud/mill.git
    cd mill
    git checkout release-2.2.0
    mvn clean install
  2. Create database
    1. Create the empty mill database
    2. Add database
    , add credentials and than create
    1. credentials
    2. Create the schema
    using mill
    1. using <mill project root>/resources/mill.schema.
    sql (found in the mill code baseline.)
    1. sql 
    2. Run schema updates in ascending order:  <mill project root>/resources/schema-update-*.sql
  3. Create a configuration file.
    1. Now that you've built the mill and created the database, we need to set up a configuration file that can be used my the various components of the system. A template of this configuration file can be found in the base line at mill/resources/mill-config-sample.properties
      1. Copy and rename the file to mill-config.properties
      2. Configure the database connections to the mill database as well as the management console database:

        Code Block
        ###################
        # MILLMill DATABASEDatabase
        ###################
        # Config for mill database.
        mill.db.host=[fill in]
        mill.db.port=[fill in]
        mill.db.name=[fill in]
        # User must have read/write permission
        mill.db.user=[fill in]
        mill.db.pass=[fill in]
        #Turn this feature on to generate the milldb
        #hibernate.hbm2ddl.auto=update
        ###################
        # Account MCManagement DATABASEDatabase
        ###################
        # Config for the management console database - used to retrieve accounts and storage provider credentials
        db.host=[fill in]
        db.port=[fill in]
        db.name=[fill in]
        # User must have read permission
        db.user=[fill in]
        db.pass=[fill in]

...

Content by Label
showSpace
showLabelsfalse
max5
spacesDURACLOUDDEV
showSpacefalse
sortmodified
falsereversetrue
typepage
cqllabel = "mill" and type = "page" and space = "DURACLOUDDEV"
labelsmill

Page properties
hiddentrue
Related issues