@@ -8,10 +8,37 @@ before you start working with VictoriaLogs.
88
99There are the following options exist:
1010
11+ - [ To run pre-built binaries] ( #pre-built-binaries )
1112- [ To run Docker image] ( #docker-image )
1213- [ To run in Kubernetes with Helm charts] ( #helm-charts )
1314- [ To build VictoriaLogs from source code] ( #building-from-source-code )
1415
16+ ### Pre-built binaries
17+
18+ Pre-built binaries for VictoriaLogs are availble at the [ releases] ( https://github.com/VictoriaMetrics/VictoriaMetrics/releases/ ) page.
19+ Just download archive for the needed Operating system and architecture, unpack it and run ` victoria-logs-prod ` from it.
20+
21+ For example, the following commands download VictoriaLogs archive for Linux/amd64, unpack and run it:
22+
23+ ``` bash
24+ curl https://github.com/VictoriaMetrics/VictoriaMetrics/releases/download/v0.1.0-victorialogs/victoria-logs-linux-amd64-v0.1.0-victorialogs.tar.gz
25+ tar xzf victoria-logs-linux-amd64-v0.1.0-victorialogs.tar.gz
26+ ./victoria-logs-prod
27+ ```
28+
29+ VictoriaLogs is ready for [ data ingestion] ( https://docs.victoriametrics.com/VictoriaLogs/data-ingestion/ )
30+ and [ querying] ( https://docs.victoriametrics.com/VictoriaLogs/querying/ ) at the TCP port ` 9428 ` now!
31+ It has no any external dependencies, so it may run in various environments without additional setup and configuration.
32+ VictoriaLogs automatically adapts to the available CPU and RAM resources. It also automatically setups and creates
33+ the needed indexes during [ data ingestion] ( https://docs.victoriametrics.com/VictoriaLogs/data-ingestion/ ) .
34+
35+ See also:
36+
37+ - [ How to configure VictoriaLogs] ( #how-to-configure-victorialogs )
38+ - [ How to ingest logs into VictoriaLogs] ( https://docs.victoriametrics.com/VictoriaLogs/data-ingestion/ )
39+ - [ How to query VictoriaLogs] ( https://docs.victoriametrics.com/VictoriaLogs/querying/ )
40+
41+
1542### Docker image
1643
1744You can run VictoriaLogs in a Docker container. It is the easiest way to start using VictoriaLogs.
0 commit comments