您好,登錄后才能下訂單哦!
本篇文章為大家展示了CentOS7中怎么安裝clickhouse,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
Debian/Ubuntu 用戶
新建/etc/apt/sources.list.d/clickhouse.list,內容為
deb https://mirrors.tuna.tsinghua.edu.cn/clickhouse/deb/stable/ main/
RHEL/CentOS 用戶
新建 /etc/yum.repos.d/clickhouse.repo,內容為
[clickhouse] name=clickhouse stable baseurl=https://mirrors.tuna.tsinghua.edu.cn/clickhouse/rpm/stable/x86_64 enabled=1 gpgcheck=0
安裝
在CentOS7上直接使用yum直接安裝就可以。
yum install clickhouse-server clickhouse-client -y
啟動服務并設置開機啟動
systemctl start clickhouse-server systemctl enable clickhouse-server
測試
直接使用clickhouse-client進行連接
clickhouse-client
創建數據庫和一張表測試
create database metrics;
use metrics
create table servers( id UInt64 ,ip String ,count UInt64) engine=TinyLog;
insert into servers (id , ip , count) values (1,'127.0.0.1',100);
select * from servers;
centos7 :) select * from servers; SELECT * FROM servers ┌─id─┬─ip────────┬─count─┐ │ 1 │ 127.0.0.1 │ 100 │ └────┴───────────┴───────┘ 1 rows in set. Elapsed: 0.002 sec. centos7 :)
上述內容就是CentOS7中怎么安裝clickhouse,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。