Skip to content

Commit

Permalink
Fixes to Connect using MariaDB CLI, docs for CLI install on macos.
Browse files Browse the repository at this point in the history
  • Loading branch information
jramnara committed Oct 15, 2024
1 parent 78d625b commit 3cd1778
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
22 changes: 21 additions & 1 deletion docs/Connecting to Sky DBs/Connect using MariaDB CLI.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@

MariaDB Client is available for Linux and Windows
MariaDB Client is available for all major operating systems.


## 1. Installation
Installation of MariaDB Client varies by operating system.

### MacOS

1. Install Homebrew if you don't have it already:

```bash
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
```

2. Install MariaDB Client:

```bash
brew install mariadb
```

3. Verify the installation:

```bash
mariadb --version
```

### CentOS / RHEL

1. Configure YUM package repositories:
Expand Down
2 changes: 1 addition & 1 deletion docs/Connecting to Sky DBs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Connection parameters include:

### Install and Connect using the MariaDB client

After [installing the MariaDB client](https://mariadb.com/docs/server/connect/clients/mariadb-client/) according to your operating system, simply copy/paste the MariaDB CLI command as displayed in the Connect window.
After [installing the MariaDB client](./Connect%20using%20MariaDB%20CLI.md) according to your operating system, simply copy/paste the MariaDB CLI command as displayed in the Connect window.

## Connecting from your Application

Expand Down

0 comments on commit 3cd1778

Please sign in to comment.