In your installation's ' Because the other scripts call these environment scripts before executing this is the central location you need to make changes to any configuration. The major points you want to change immediately following installation:
At the top of the environment script you'll find a block of variables you can use to change these values: export SERVER_URL="http://localhost:9001/mint/" export LOCAL_PORT="9001" export PROJECT_HOME="C:/tf2/mint-bare" export AMQ_PORT="9201" export AMQ_STOMP_PORT="9202" export SMTP_HOST="localhost" export ADMIN_EMAIL="[email protected]" The AMQ ports don't generally need to be changed, unless you are integrating with other systems. This is not part of a typical ReDBox/Mint deployment however. Shell ScriptsStarting and stopping the server is achieved with the ' ./tf.sh start ./tf.sh stop ./tf.sh restart ./tf.sh status Once the system is online, you can execute a harvest using the harvest script: ./tf_harvest.sh {harvest_source}
The details of using this script can be found here. WindowsThe Windows batch scripts are fairly similar, but the start/stop process is less comprehensive since they are mainly used by current users for development work only. There is a single ' Harvesting is identical, using ' Proxy DetailsIf your server is behind a corporate proxy the control scripts will try to ensure this is accounted for by examining the environment. You may however prefer to set this (or disable this) manually by modifying this line (or its corresponding Windows equivalent): PROXY_OPTS="-Dhttp.proxyHost=$PROXY_HOST -Dhttp.proxyPort=$PROXY_PORT -Dhttp.nonProxyHosts=localhost" In particular ' |