!CHAPTER Details about the ArangoDB Shell After the server has been [started](../FirstSteps/Arangod.html#details_about_the_arangodb_server), you can use the ArangoDB shell (_arangosh_) to administrate the server. Without any arguments, the ArangoDB shell will try to contact the server on port 8529 on the localhost. For more information see the [ArangoDB Shell documentation](../Arangosh/README.md). You might need to set additional options (endpoint, username and password) when connecting: ``` unix> ./arangosh --server.endpoint tcp://127.0.0.1:8529 --server.username root ``` The shell will print its own version number and – if successfully connected to a server – the version number of the ArangoDB server. !SECTION Command-Line Options Use `--help` to get a list of command-line options: ``` unix> ./arangosh --help STANDARD options: --audit-log audit log file to save commands and results to --configuration read configuration file --help help message --max-upload-size maximum size of import chunks (in bytes) (default: 500000) --no-auto-complete disable auto completion --no-colors deactivate color support --pager output pager (default: "less -X -R -F -L") --pretty-print pretty print values --quiet no banner --temp-path path for temporary files (default: "/tmp/arangodb") --use-pager use pager JAVASCRIPT options: --javascript.check syntax check code Javascript code from file --javascript.execute execute Javascript code from file --javascript.execute-string execute Javascript code from string --javascript.startup-directory startup paths containing the JavaScript files --javascript.unit-tests do not start as shell, run unit tests instead --jslint do not start as shell, run jslint instead LOGGING options: --log.level log level (default: "info") CLIENT options: --server.connect-timeout connect timeout in seconds (default: 3) --server.disable-authentication disable authentication (default: false) --server.endpoint endpoint to connect to, use 'none' to start without a server (default: "tcp://127.0.0.1:8529") --server.password password to use when connecting (leave empty for prompt) --server.request-timeout request timeout in seconds (default: 300) --server.username username to use when connecting (default: "root") ```