diff options
author | MikeBirnstiehl <michael.birnstiehl@sonarsource.com> | 2019-08-05 10:17:44 -0500 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-08-05 20:21:12 +0200 |
commit | 6bc099d90228c72d7d9eda80006cd1fe0a632969 (patch) | |
tree | a8b67ed6f164159d34aa5345219bfcf6767ac28e | |
parent | b1eca3fed16d89ed8c8bb45d560ab84af4130602 (diff) | |
download | sonarqube-6bc099d90228c72d7d9eda80006cd1fe0a632969.tar.gz sonarqube-6bc099d90228c72d7d9eda80006cd1fe0a632969.zip |
DOCS update 2 min guide and add troubleshooting link
-rw-r--r-- | server/sonar-docs/src/pages/setup/get-started-2-minutes.md | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/server/sonar-docs/src/pages/setup/get-started-2-minutes.md b/server/sonar-docs/src/pages/setup/get-started-2-minutes.md index 5d64402bea9..b23ace4d164 100644 --- a/server/sonar-docs/src/pages/setup/get-started-2-minutes.md +++ b/server/sonar-docs/src/pages/setup/get-started-2-minutes.md @@ -3,28 +3,31 @@ title: Get Started in Two Minutes Guide url: /setup/get-started-2-minutes/ --- +[[info]] +| This guides shows you how to install a demo instance. When you are ready to move to production, take some time to read the [Install the Server](/setup/install-server/) documentation. + ## Installing from a zip file -1. [Download](https://www.sonarqube.org/downloads/) the SonarQube Community Edition +1. [Download](https://www.sonarqube.org/downloads/) the SonarQube Community Edition. -2. Unzip it, let's say in _C:\sonarqube_ or _/opt/sonarqube_ +2. Unzip it, let's say in _C:\sonarqube_ or _/opt/sonarqube_. 3. Start the SonarQube Server: -``` -# On Windows, execute: -C:\sonarqube\bin\windows-x86-xx\StartSonar.bat + ``` + # On Windows, execute: + C:\sonarqube\bin\windows-x86-xx\StartSonar.bat -# On other operating systems, as a non-root user execute: -/opt/sonarqube/bin/[OS]/sonar.sh console -``` + # On other operating systems, as a non-root user execute: + /opt/sonarqube/bin/[OS]/sonar.sh console + ``` -4. Log in to [http://localhost:9000](http://localhost:9000) with System Administrator credentials (admin/admin) and follow the embedded tutorial to analyze your first project. +  If your instance fails to start, check your [logs](/setup/troubleshooting/) to find the cause. - This play instance is suitable for demonstration purposes, when you are ready to move to production, take some time to read the [Install the Server](/setup/install-server/) documentation. +4. Log in to [http://localhost:9000](http://localhost:9000) with System Administrator credentials (login=admin, password=admin). -## Using Docker +5. Click the **Create new project** button to analyze your first project. -A Docker image of the Community Edition is available on [Docker Hub](https://hub.docker.com/_/sonarqube/), see usage and configuration examples there. +## Using Docker - This instance is suitable for demonstration or testing purposes only. +A Docker image of the Community Edition is available on [Docker Hub](https://hub.docker.com/_/sonarqube/). You can find usage and configuration examples there.
\ No newline at end of file |