Skip to content
This repository was archived by the owner on Dec 13, 2023. It is now read-only.

Commit dd59468

Browse files
authored
Installation | macOS client tools only (#1409)
* macos client tools only * remove package installation details * adjust links
1 parent 6e4b190 commit dd59468

File tree

4 files changed

+38
-104
lines changed

4 files changed

+38
-104
lines changed

3.11/installation-mac-osx.md

+11-49
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
---
22
layout: default
3-
description: You can use ArangoDB on macOS via Docker images, DMG packages, or tar.gz archives
3+
description: You can use ArangoDB on macOS via Docker images, and run client tools using tar.gz archives
44
title: Installing ArangoDB on macOS
55
---
66
Installing ArangoDB on macOS
77
============================
88

9-
You can use ArangoDB on macOS in different ways:
10-
11-
- [Docker images](#docker)
12-
- [_DMG_ packages](#package-installation)
13-
- [_tar.gz_ archives](#installing-using-the-archive)
9+
You can use ArangoDB on macOS with [Docker images](#docker) and run the client
10+
tools using [_tar.gz_ archives](#installing-the-client-tools-using-the-archive).
1411

1512
{% hint 'tip' %}
1613
Starting from version 3.10.0, ArangoDB has native support for the ARM
@@ -21,8 +18,12 @@ architecture and can run on Apple silicon (e.g. M1 chips).
2118
Running production environments on macOS is not supported.
2219
{% endhint %}
2320

24-
Docker
25-
------
21+
{% hint 'info' %}
22+
Starting from version 3.11.0, ArangoDB Server binaries for macOS are not
23+
provided anymore.
24+
{% endhint %}
25+
26+
## Docker
2627

2728
The recommended way of using ArangoDB on macOS is to use the
2829
[ArangoDB Docker images](https://www.arangodb.com/download-major/docker/){:target="_blank"}
@@ -32,49 +33,10 @@ See the documentation on [Docker Hub](https://hub.docker.com/_/arangodb){:target
3233
as well as the [Deployments](architecture-deployment-modes.html) section about
3334
different deployment modes and methods including Docker containers.
3435

35-
Package Installation
36-
--------------------
37-
38-
ArangoDB provide a command-line app called *ArangoDB-CLI*.
39-
40-
Visit the official [Download](https://www.arangodb.com/download){:target="_blank"}
41-
page of the ArangoDB website and download the *DMG* Package for macOS.
42-
43-
You may verify the download by comparing the SHA256 hash listed on the website
44-
to the hash of the file. For example, you can you run `openssl sha256 <filename>`
45-
or `shasum -a 256 <filename>` in a terminal. You may also run
46-
`codesign --verify --verbose <filename>` to validate the notarization of an
47-
executable.
48-
49-
You can install the application in your application folder.
50-
51-
Starting the application starts the server and opens a terminal window
52-
showing you the log-file.
53-
54-
```
55-
ArangoDB server has been started
56-
57-
The database directory is located at
58-
'/Users/<user>/Library/ArangoDB/var/lib/arangodb3'
59-
60-
The log file is located at
61-
'/Users/<user>/Library/ArangoDB/var/log/arangodb3/arangod.log'
62-
63-
You can access the server using a browser at 'http://127.0.0.1:8529/'
64-
or start the ArangoDB shell
65-
'/Applications/ArangoDB3-CLI.app/Contents/Resources/arangosh'
66-
67-
Switching to log-file now, killing this windows will NOT stop the server.
68-
69-
70-
2022-10-21T09:37:01Z [13373] INFO ArangoDB (version 3.9.3 [darwin]) is ready for business. Have fun!
71-
```
72-
73-
Installing using the archive
74-
----------------------------
36+
## Installing the client tools using the archive
7537

7638
1. Visit the official [Download](https://www.arangodb.com/download){:target="_blank"}
77-
page of the ArangoDB website and download the _tar.gz_ archive for macOS.
39+
page of the ArangoDB website and download the client tools _tar.gz_ archive for macOS.
7840

7941
2. You may verify the download by comparing the SHA256 hash listed on the website
8042
to the hash of the file. For example, you can you run `openssl sha256 <filename>`

3.11/installation.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ system from the official [Download](https://www.arangodb.com/download){:target="
1010
page of the ArangoDB web site.
1111

1212
You can find packages for various operating systems, including _RPM_ and _Debian_
13-
packages for Linux, and _dmg_ packages for macOS. `tar.gz` archives are available
14-
for both. For Windows, _Installers_ and `zip` archives are available.
13+
packages for Linux, including `tar.gz` archives. For macOS, only client tools `tar.gz`
14+
packages are available. For Windows, _Installers_ and `zip` archives are available.
1515

1616
- [Linux](installation-linux.html)
1717
- [macOS](installation-mac-osx.html)
@@ -58,7 +58,12 @@ to use a page size of **4096 bytes** or less.
5858

5959
## macOS
6060

61-
ArangoDB is available for the following architectures:
61+
{% hint 'info' %}
62+
Starting with version 3.11.0, ArangoDB Server binaries for macOS are not
63+
provided anymore.
64+
{% endhint %}
65+
66+
Client tools are available for the following architectures:
6267

6368
- **x86-64**: The processor(s) must support the **x86-64** architecture with the
6469
**SSE 4.2** and **AVX** instruction set extensions (Intel Sandy Bridge or better,

3.12/installation-mac-osx.md

+11-49
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
---
22
layout: default
3-
description: You can use ArangoDB on macOS via Docker images, DMG packages, or tar.gz archives
3+
description: You can use ArangoDB on macOS via Docker images, and run client tools using tar.gz archives
44
title: Installing ArangoDB on macOS
55
---
66
Installing ArangoDB on macOS
77
============================
88

9-
You can use ArangoDB on macOS in different ways:
10-
11-
- [Docker images](#docker)
12-
- [_DMG_ packages](#package-installation)
13-
- [_tar.gz_ archives](#installing-using-the-archive)
9+
You can use ArangoDB on macOS with [Docker images](#docker) and run the client
10+
tools using [_tar.gz_ archives](#installing-the-client-tools-using-the-archive).
1411

1512
{% hint 'tip' %}
1613
Starting from version 3.10.0, ArangoDB has native support for the ARM
@@ -21,8 +18,12 @@ architecture and can run on Apple silicon (e.g. M1 chips).
2118
Running production environments on macOS is not supported.
2219
{% endhint %}
2320

24-
Docker
25-
------
21+
{% hint 'info' %}
22+
Starting from version 3.11.0, ArangoDB Server binaries for macOS are not
23+
provided anymore.
24+
{% endhint %}
25+
26+
## Docker
2627

2728
The recommended way of using ArangoDB on macOS is to use the
2829
[ArangoDB Docker images](https://www.arangodb.com/download-major/docker/){:target="_blank"}
@@ -32,49 +33,10 @@ See the documentation on [Docker Hub](https://hub.docker.com/_/arangodb){:target
3233
as well as the [Deployments](architecture-deployment-modes.html) section about
3334
different deployment modes and methods including Docker containers.
3435

35-
Package Installation
36-
--------------------
37-
38-
ArangoDB provide a command-line app called *ArangoDB-CLI*.
39-
40-
Visit the official [Download](https://www.arangodb.com/download){:target="_blank"}
41-
page of the ArangoDB website and download the *DMG* Package for macOS.
42-
43-
You may verify the download by comparing the SHA256 hash listed on the website
44-
to the hash of the file. For example, you can you run `openssl sha256 <filename>`
45-
or `shasum -a 256 <filename>` in a terminal. You may also run
46-
`codesign --verify --verbose <filename>` to validate the notarization of an
47-
executable.
48-
49-
You can install the application in your application folder.
50-
51-
Starting the application starts the server and opens a terminal window
52-
showing you the log-file.
53-
54-
```
55-
ArangoDB server has been started
56-
57-
The database directory is located at
58-
'/Users/<user>/Library/ArangoDB/var/lib/arangodb3'
59-
60-
The log file is located at
61-
'/Users/<user>/Library/ArangoDB/var/log/arangodb3/arangod.log'
62-
63-
You can access the server using a browser at 'http://127.0.0.1:8529/'
64-
or start the ArangoDB shell
65-
'/Applications/ArangoDB3-CLI.app/Contents/Resources/arangosh'
66-
67-
Switching to log-file now, killing this windows will NOT stop the server.
68-
69-
70-
2022-10-21T09:37:01Z [13373] INFO ArangoDB (version 3.9.3 [darwin]) is ready for business. Have fun!
71-
```
72-
73-
Installing using the archive
74-
----------------------------
36+
## Installing the client tools using the archive
7537

7638
1. Visit the official [Download](https://www.arangodb.com/download){:target="_blank"}
77-
page of the ArangoDB website and download the _tar.gz_ archive for macOS.
39+
page of the ArangoDB website and download the client tools _tar.gz_ archive for macOS.
7840

7941
2. You may verify the download by comparing the SHA256 hash listed on the website
8042
to the hash of the file. For example, you can you run `openssl sha256 <filename>`

3.12/installation.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ system from the official [Download](https://www.arangodb.com/download){:target="
1010
page of the ArangoDB web site.
1111

1212
You can find packages for various operating systems, including _RPM_ and _Debian_
13-
packages for Linux, and _dmg_ packages for macOS. `tar.gz` archives are available
14-
for both. For Windows, _Installers_ and `zip` archives are available.
13+
packages for Linux, including `tar.gz` archives. For macOS, only client tools `tar.gz`
14+
packages are available. For Windows, _Installers_ and `zip` archives are available.
1515

1616
- [Linux](installation-linux.html)
1717
- [macOS](installation-mac-osx.html)
@@ -58,7 +58,12 @@ to use a page size of **4096 bytes** or less.
5858

5959
## macOS
6060

61-
ArangoDB is available for the following architectures:
61+
{% hint 'info' %}
62+
Starting with version 3.11.0, ArangoDB Server binaries for macOS are not
63+
provided anymore.
64+
{% endhint %}
65+
66+
Client tools are available for the following architectures:
6267

6368
- **x86-64**: The processor(s) must support the **x86-64** architecture with the
6469
**SSE 4.2** and **AVX** instruction set extensions (Intel Sandy Bridge or better,

0 commit comments

Comments
 (0)