SQLiteDBMS quick start guide

If you want more documents. Visit http://sqlitedbms.sourceforge.net/

1. Installation
   1-1. Requirement
      1. sqlite 3.x
         http://www.sqlite.org/
      2. OpenSSL(not yet)
         http://www.openssl.org/

   1-2. Get source code
       * http://sourceforge.net/project/showfiles.php?group_id=106881 (from sourceforge)

   1-3. Compile and install
      1. Extract tarball file
         # tar zxf sqlitedbms-x.x.x.tar.gz

      2. Move into source directory
         # cd sqlitedbms-x.x.x

      3. Run configure script
         # configure [--prefix=INSTALLDIR] [--with-sqlite3=SQLITE3DIR]

      4. Compile
         # make

      5. Install
         # make install

2. Startup backend
   2-1. Configuration
      1. Move installed directory
         # cd /SQLITEDBMS/INSTALLED/PATH

      2. Make new configuration file
         # cp conf/sqlitedbms.conf.sample conf/sqlitedbms.conf

      3. Edit configuration file

   2-2. Start backend and initialize catalog database
         # bin/sqlitedbms
         ** Catalog files not found. Insert admin id and password for initialize catalog.
            Administrator ID: admin
            Administrator password: password
            Administrator's ID: admin, password: password
            Right? (y/n): y

3. Connect to backend
   3-1. Web base client
      1. Open your web browser
      2. Visit http://YOURSERVER:6543/
         Connect your sqlitedbms server via HTTP


