Created
August 19, 2021 08:19
-
-
Save bsmth/cd51af0d14f3d45722072e2289934a75 to your computer and use it in GitHub Desktop.
Starting QDB from bin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir bin_dir && cd bin_dir | |
wget https://github.com/questdb/questdb/releases/download/6.0.4/questdb-6.0.4-no-jre-bin.tar.gz | |
tar -xvf questdb-6.0.4-no-jre-bin.tar.gz | |
cd questdb-6.0.4-no-jre-bin | |
./questdb.sh start -d /path/to/my_data_dir | |
./questdb.sh stop | |
# /path/to/my_data_dir will create a new root directory for QuestDB | |
# If a server config file exists already, it will be loaded, i.e. | |
mkdir -p /path/to/data_dir_two | |
echo "http.bind.to=0.0.0.0:9001" > /path/to/data_dir_two/conf/server.conf | |
./questdb.sh start -d /path/to/data_dir_two | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment