Changes between Version 124 and Version 125 of FAQ


Ignore:
Timestamp:
Aug 31, 2016, 9:04:01 AM (8 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v124 v125  
    115115=== After installing I cannot find the documentation in the install directory ===
    116116To include PDF and HTML documentation in the build process, which takes some time to build, you have to specify explicitly `--with-docs` when invoking `./configure`
     117
     118=== How to reinitialize RASBASE ===
     119If you want to drop all data stored in rasdaman quickly for some reason:
     120
     121'''SQLite/Filestorage (default)''':
     1221. `stop_rasdaman.sh`
     1231. Let `RASDATA` be the directory specified in the host `-connect` option in `rasmgr.conf`, likely `/opt/rasdaman/data`; make sure it is indeed this directory (`ls $RASDATA/` should show `RASBASE`, `TILES/`, `TRANSACTIONS/`).
     1241. Drop the data: `rm -rf $RASDATA/*`
     1251. Initialize a brand new database: `create_db.sh`
     1261. `start_rasdaman.sh`
     127
     128'''PostgreSQL''':
     1291. `stop_rasdaman.sh`
     1301. Drop the data: `dropdb RASBASE`
     1311. Initialize a brand new database: `create_db.sh`
     1321. `start_rasdaman.sh`
    117133
    118134== PostgreSQL ==