mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
update OVERVIEW
This commit is contained in:
commit
eb76c2b958
7 changed files with 11 additions and 10 deletions
|
@ -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
|
||||
|
|
10
OVERVIEW.md
10
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 <year>
|
||||
* ARDB on TCP port <year>
|
||||
- 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
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
=======
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 145 KiB |
Binary file not shown.
Before Width: | Height: | Size: 190 KiB After Width: | Height: | Size: 322 KiB |
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue