# MongoDB standalone-server installation template. # # Create the active installation file with: # # cp _mongodb_standalone_setup.bash.in _mongodb_standalone_setup.bash # # The defaults below normally require no editing. The active copied file is # installation-specific and should not be committed to SVN. # Port and network interface for the local standalone mongod process. GS_MONGODB_PORT=27017 GS_MONGODB_STANDALONE_BIND_IP="127.0.0.1" GS_MONGODB_STANDALONE_CONNECT_HOST="localhost" # Runtime data is kept separate from the developer-run scripts. GS_MONGODB_STANDALONE_HOME="$GS_MONGODB_SOURCE_HOME/standalone-server-runtime" GS_MONGODB_STANDALONE_DATA_DIR="$GS_MONGODB_STANDALONE_HOME/data" GS_MONGODB_STANDALONE_LOG_DIR="$GS_MONGODB_STANDALONE_HOME/log" GS_MONGODB_STANDALONE_RUN_DIR="$GS_MONGODB_STANDALONE_HOME/run" GS_MONGODB_STANDALONE_START_TIMEOUT=60 GS_MONGODB_STANDALONE_STOP_TIMEOUT=60 GS_MONGODB_SHELL="mongosh"