You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. You may need to install the `apt-transport-https` package on Debian before proceeding:
773
+
774
+
```shell
775
+
sudo apt-get install apt-transport-https
776
+
```
777
+
778
+
1. Save the repository definition to `/etc/apt/sources.list.d/elastic-9.0.0.list`:
779
+
780
+
```shell
781
+
echo"deb https://artifacts.elastic.co/packages/9.0.0-prerelease/apt stable main"| sudo tee -a /etc/apt/sources.list.d/elastic-9.0.0-prerelease.list
782
+
```
783
+
784
+
:::{warning}
785
+
To add the Elastic repository, make sure that you use the `echo` method shown in the example. Do not use `add-apt-repository` because it will add a `deb-src` entry, but we do not provide a source package.
786
+
787
+
If you have added the `deb-src` entry by mistake, you will see an error like the following:
788
+
789
+
```text
790
+
Unable to find expected entry 'main/source/Sources'in Release file (Wrong sources.list entry or malformed file)
791
+
```
792
+
:::
793
+
794
+
1. Run `apt-get update`, and the repository is ready for use. For example, you can install APM Server by running:
Your repository is ready to use. For example, you can install APM Server by running:
830
+
831
+
```shell
832
+
sudo yum install apm-server
833
+
```
834
+
835
+
1. To configure APM Server to start automatically during boot, run:
836
+
837
+
```shell
838
+
sudo systemctl enable apm-server
839
+
```
840
+
769
841
770
842
## Run APM Server on Docker [apm-running-on-docker]
771
843
@@ -779,7 +851,34 @@ These images are free to use under the Elastic license. They contain open source
779
851
780
852
Obtaining APM Server for Docker is as simple as issuing a `docker pull`command against the Elastic Docker registry and then, optionally, verifying the image.
781
853
782
-
However, version 9.0.0-beta1 of APM Server has not yet been released, so no Docker image is currently available for this version.
0 commit comments