1. Home
  2. Knowledge Base
  3. ClickHouse DBA
  4. gpg: failed to create temporary file Error During ClickHouse Installation
  1. Home
  2. Knowledge Base
  3. ClickHouse Troubleshooting
  4. gpg: failed to create temporary file Error During ClickHouse Installation

gpg: failed to create temporary file Error During ClickHouse Installation

On Linux or Linux-like systems such as MacOS, you might get following error during ClickHouse Installation.

Following command allows you to install ClickHouse packages.

sudo apt-get install -y apt-transport-https ca-certificates dirmngr
sudo gpg --no-default-keyring --keyring /usr/share/keyrings/clickhouse-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 8919F6BD2B48D754

echo "deb [signed-by=/usr/share/keyrings/clickhouse-keyring.gpg] https://packages.clickhouse.com/deb stable main" | sudo tee \
    /etc/apt/sources.list.d/clickhouse.list
sudo apt-get update

On “gpg” step, you might get followin error.

gpg: failed to create temporary file '/Users/chistadata/.gnupg/.#lk0x000060000145c100.NAME WITH SPACES.53297': No such file or directory

Solution:

Create a folder

mkdir -p /Users/chistadata/.gnupg/

Give permission

sudo chown -R $USER:staff ~/.gnupg
chmod 700 ~/.gnupg/

 

Was this article helpful?

Related Articles

CHISTADATA IS COMMITTED TO OPEN SOURCE SOFTWARE AND BUILDING HIGH PERFORMANCE COLUMNSTORES

In the spirit of freedom, independence and innovation. ChistaDATA Corporation is not affiliated with ClickHouse Corporation 

Contents

Need Support?

Can't find the answer you're looking for?
Contact Support

ChistaDATA Inc. Knowledge base is licensed under the Apache License, Version 2.0 (the “License”)

Copyright 2022 ChistaDATA Inc

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.