Skip to content

Commit a87cce8

Browse files
authored
Merge pull request #3111 from ClickHouse/docs-verification-kb
2 parents 93ab1a4 + 46debae commit a87cce8

File tree

1 file changed

+19
-3
lines changed

1 file changed

+19
-3
lines changed

knowledgebase/fix-developer-verification-error-in-macos.mdx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,18 @@ keywords: ['Developer Verification', 'MacOS']
1212

1313
## Fix the Developer Verification Error in MacOS
1414

15-
If you install ClickHouse using `brew`, you may encounter an error from MacOS. By default, MacOS will not run applications or tools created by a developer who cannot be verified.
15+
If you install ClickHouse using `brew`, you may encounter an error from MacOS.
16+
By default, MacOS will not run applications or tools created by a developer who cannot be verified.
1617

1718
When attempting to run any `clickhouse` command, you may see this error:
1819

1920
![MacOS showing a developer verification error.](./images/fix-the-developer-verification-error-in-macos/dev-verification-error.png)
2021

21-
To get around this verification error, you need to remove the app from MacOS' quarintine bin either by finding the appropriate setting in your [System Settings window](#system-settings-process), or [using the terminal](#terminal-process).
22+
To get around this verification error, you need to remove the app from MacOS' quarantine bin either by finding the appropriate setting in your System Settings window, using the terminal, or by re-installing ClickHouse.
2223

2324
## System settings process
2425

25-
The easiest way to remove the `clickhouse` executable from the quarintine bin is to:
26+
The easiest way to remove the `clickhouse` executable from the quarantine bin is to:
2627

2728
1. Open **System settings**.
2829
1. Navigate to **Privacy & Security**:
@@ -75,4 +76,19 @@ clickhouse local [args]
7576
clickhouse client [args]
7677
clickhouse benchmark [args]
7778
...
79+
80+
## Fix the Issue by Reinstalling ClickHouse
81+
82+
Brew has a command-line option which avoids quarantining installed binaries in the first place.
83+
84+
First, uninstall ClickHouse:
85+
86+
```shell
87+
brew uninstall clickhouse
88+
```
89+
90+
Now reinstall ClickHouse with `--no-quarantine`:
91+
92+
```shell
93+
brew install --no-quarantine clickhouse
7894
```

0 commit comments

Comments
 (0)