diff --git a/Dockerfile b/Dockerfile index 3249ceb0..cdd26d6c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,4 +20,7 @@ WORKDIR /opt/AIL/var/www RUN ./update_thirdparty.sh WORKDIR /opt/AIL +# Default to UTF-8 file.encoding +ENV LANG C.UTF-8 + CMD bash docker_start.sh diff --git a/OVERVIEW.md b/OVERVIEW.md index b642431b..471f635d 100644 --- a/OVERVIEW.md +++ b/OVERVIEW.md @@ -11,14 +11,14 @@ Redis and ARDB overview * Redis on TCP port 6381 - DB 0 - PubSub + Queue and Paste content LRU cache - DB 1 - _Mixer_ Cache -* LevelDB on TCP port 6382 +* ARDB on TCP port 6382 - DB 1 - Curve - DB 2 - Trending - DB 3 - Terms - DB 4 - Sentiments -* LevelDB on TCP port +* ARDB on TCP port - DB 0 - Lines duplicate - - DB 1 - Hashs + - DB 1 - Hashes ARDB overview @@ -45,7 +45,3 @@ ARDB overview SET - 'hash_all_type' hash_type ZADD - 'base64_type:'+type date nb_seen - - - - diff --git a/README.md b/README.md index 7d5ac650..6325283e 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ Terms manager and occurence Command line module manager --------------------------- -![Module-Manager](./doc/screenshots/module-manager.png?raw=true "AIL framework ModuleInformationV2.py") +![Module-Manager](./doc/screenshots/module_information.png?raw=true "AIL framework ModuleInformationV2.py") License ======= diff --git a/doc/screenshots/browse-important.png b/doc/screenshots/browse-important.png index 0490c03e..443f917a 100644 Binary files a/doc/screenshots/browse-important.png and b/doc/screenshots/browse-important.png differ diff --git a/doc/screenshots/dashboard.png b/doc/screenshots/dashboard.png index cd633473..191e9fb9 100644 Binary files a/doc/screenshots/dashboard.png and b/doc/screenshots/dashboard.png differ diff --git a/docker_start.sh b/docker_start.sh index 3cb94bb8..52f40338 100755 --- a/docker_start.sh +++ b/docker_start.sh @@ -4,6 +4,7 @@ cd bin export PATH=$AIL_HOME:$PATH export PATH=$AIL_REDIS:$PATH export PATH=$AIL_LEVELDB:$PATH +export PATH=$AIL_ARDB:$PATH export AILENV=/opt/AIL conf_dir="${AIL_HOME}/configs/" @@ -15,7 +16,8 @@ screen -S "Redis" -X screen -t "6381" bash -c 'redis-server '$conf_dir'6381.conf # For Words and curves sleep 0.1 -screen -S "Redis" -X screen -t "6382" bash -c 'redis-server '$conf_dir'6382.conf ; read x' +screen -dmS "ARDB_AIL" +screen -S "ARDB_AIL" -X screen -t "6382" bash -c 'ardb-server '$conf_dir'6382.conf ; read x' #Want to launch more level_db? lvdbhost='127.0.0.1' diff --git a/installing_deps.sh b/installing_deps.sh index 9376dd65..b6c489df 100755 --- a/installing_deps.sh +++ b/installing_deps.sh @@ -27,7 +27,7 @@ sudo apt-get install libev-dev libgmp-dev -y sudo apt-get install graphviz -y # install nosetests -sudo pip install nose +sudo pip3 install nose # ssdeep sudo apt-get install libfuzzy-dev -y