Skip to content
This repository was archived by the owner on Jan 15, 2025. It is now read-only.

Commit 900ba41

Browse files
PMM-13559 PMM client binary download link is broken (#1332)
* PMM-13559 PMM client binary download link is broken added "-x86_64 " For v2 I'm skipping the ARM as not officially supported for this version * linguistic review --------- Co-authored-by: Catalina A <94133018+catalinaadam@users.noreply.github.com>
1 parent 0c5d6c4 commit 900ba41

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

docs/setting-up/client/index.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ Here's an overview of the choices.
4343

4444
The [PMM Client Docker image] is a convenient way to run PMM Client as a preconfigured [Docker] container.
4545

46-
1. Pull the PMM Client docker image.
46+
1. Pull the PMM Client docker image:
4747

4848
```sh
4949
docker pull \
5050
percona/pmm-client:2
5151
```
5252

53-
2. Use the image as a template to create a persistent data store that preserves local data when the image is updated.
53+
2. Use the image as a template to create a persistent data store that preserves local data when the image is updated:
5454

5555
```sh
5656
docker create \
@@ -59,7 +59,7 @@ The [PMM Client Docker image] is a convenient way to run PMM Client as a preconf
5959
percona/pmm-client:2 /bin/true
6060
```
6161

62-
3. Run the container to start [PMM Agent](../../details/commands/pmm-agent.md) in setup mode. Set `X.X.X.X` to the IP address of your PMM Server. (Do not use the `docker --detach` option as PMM agent only logs to the console.)
62+
3. Run the container to start [PMM Agent](../../details/commands/pmm-agent.md) in setup mode. Set `X.X.X.X` to the IP address of your PMM Server. Do not use the `--detach` flag as PMM Agent only outputs logs to the console:
6363

6464
```sh
6565
PMM_SERVER=X.X.X.X:443
@@ -79,7 +79,7 @@ The [PMM Client Docker image] is a convenient way to run PMM Client as a preconf
7979
!!! hint alert-success "Tips"
8080
You can find a complete list of compatible environment variables [here](../../details/commands/pmm-agent.md).
8181

82-
4. Check status.
82+
4. Check status:
8383

8484
```sh
8585
docker exec pmm-client \
@@ -195,25 +195,25 @@ Here are the download page links for each supported platform.
195195
1. Download the PMM Client package:
196196

197197
```sh
198-
wget https://downloads.percona.com/downloads/pmm2/{{release}}/binary/tarball/pmm2-client-{{release}}.tar.gz
198+
wget https://downloads.percona.com/downloads/pmm2/{{release}}/binary/tarball/pmm2-client-{{release}}-x86_64.tar.gz
199199
```
200200

201201
2. Download the PMM Client package checksum file:
202202

203203
```sh
204-
wget https://downloads.percona.com/downloads/pmm2/{{release}}/binary/tarball/pmm2-client-{{release}}.tar.gz.sha256sum
204+
wget https://downloads.percona.com/downloads/pmm2/{{release}}/binary/tarball/pmm2-client-{{release}}-x86_64.tar.gz.sha256sum
205205
```
206206

207-
3. Verify the download.
207+
3. Verify the download:
208208

209209
```sh
210-
sha256sum -c pmm2-client-{{release}}.tar.gz.sha256sum
210+
sha256sum -c pmm2-client-{{release}}-x86_64.tar.gz.sha256sum
211211
```
212212

213-
4. Unpack the package and move into the directory.
213+
4. Unpack the package and move into the directory:
214214

215215
```sh
216-
tar xfz pmm2-client-{{release}}.tar.gz && cd pmm2-client-{{release}}
216+
tar xfz pmm2-client-{{release}}-x86_64.tar.gz && cd pmm2-client-{{release}}
217217
```
218218

219219
5. Choose one of these two commands (depends on your permissions):
@@ -229,20 +229,20 @@ Here are the download page links for each supported platform.
229229
export PMM_DIR=/usr/local/percona/pmm2
230230
```
231231

232-
6. Run the installer.
232+
6. Run the installer:
233233

234234
!!! hint "Root permissions (if you skipped step 5 for non root users)"
235235
```sh
236236
./install_tarball
237237
```
238238

239-
7. Change the path.
239+
7. Change the path:
240240

241241
```sh
242242
PATH=$PATH:$PMM_DIR/bin
243243
```
244244

245-
8. Set up the agent (pick the command for you depending on permissions)
245+
8. Set up the agent (pick the command for you depending on permissions):
246246

247247
!!! hint "Root permissions"
248248
```sh
@@ -254,13 +254,13 @@ Here are the download page links for each supported platform.
254254
pmm-agent setup --config-file=${PMM_DIR}/config/pmm-agent.yaml --server-address=192.168.1.123 --server-insecure-tls --server-username=admin --server-password=admin --paths-tempdir=${PMM_DIR}/tmp --paths-base=${PMM_DIR}
255255
```
256256

257-
9. Run the agent.
257+
9. Run the agent:
258258

259259
```sh
260260
pmm-agent --config-file=${PMM_DIR}/config/pmm-agent.yaml
261261
```
262262

263-
10. Open a new terminal and check.
263+
10. Open a new terminal and check:
264264

265265
```sh
266266
pmm-admin status
@@ -276,7 +276,7 @@ Here are the download page links for each supported platform.
276276

277277
## Register
278278

279-
Register your client node with PMM Server.
279+
Register your client node with PMM Server:
280280

281281
```sh
282282
pmm-admin config --server-insecure-tls --server-url=https://admin:admin@X.X.X.X:443
@@ -331,25 +331,25 @@ How to remove (uninstall) PMM Client.
331331
!!! caution alert alert-warning "Caution"
332332
These steps delete the PMM Client Docker image and client services configuration data.
333333
334-
1. Stop pmm-client container.
334+
1. Stop pmm-client container:
335335
336336
```sh
337337
docker stop pmm-client
338338
```
339339
340-
2. Remove containers.
340+
2. Remove containers:
341341
342342
```sh
343343
docker rm pmm-client
344344
```
345345
346-
3. Remove the image.
346+
3. Remove the image:
347347
348348
```sh
349349
docker rmi $(docker images | grep "percona/pmm-client" | awk {'print $3'})
350350
```
351351
352-
4. Remove the volume.
352+
4. Remove the volume:
353353
354354
```sh
355355
docker volume rm pmm-client-data
@@ -383,7 +383,7 @@ How to remove (uninstall) PMM Client.
383383
384384
## Unregister
385385
386-
How to unregister PMM Client from PMM Server.
386+
Unregister PMM Client from PMM Server:
387387
388388
```sh
389389
pmm-admin unregister --force
@@ -393,7 +393,7 @@ All services monitored by this node will be removed from monitoring.
393393
394394
## Remove services
395395
396-
You must specify the service type and service name to remove services from monitoring.
396+
Specify the service type and service name to remove services from monitoring:
397397
398398
```sh
399399
pmm-admin remove <service-type> <service-name>

0 commit comments

Comments
 (0)