-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #823 from Icinga/install-docs
Adjust installation docs for centralized icinga.com doc injection
- Loading branch information
Showing
9 changed files
with
64 additions
and
259 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Installing Icinga DB from Source | ||
|
||
## Using `go install` | ||
|
||
You can build and install `icingadb` as follows: | ||
|
||
```bash | ||
go install github.com/icinga/icingadb@latest | ||
``` | ||
|
||
This should place the `icingadb` binary in your configured `$GOBIN` path which defaults to `$GOPATH/bin` or | ||
`$HOME/go/bin` if the `GOPATH` environment variable is not set. | ||
|
||
## Build from Source | ||
|
||
Download or clone the source and run the following command from the source's root directory. | ||
|
||
```bash | ||
go build -o icingadb cmd/icingadb/main.go | ||
``` | ||
|
||
<!-- {% set from_source = True %} --> | ||
<!-- {% include "02-Installation.md" %} --> |
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