您好,登錄后才能下訂單哦!
本篇文章為大家展示了CentOS7中怎么安裝clickhouse,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
Debian/Ubuntu 用戶
新建/etc/apt/sources.list.d/clickhouse.list,內(nèi)容為
deb https://mirrors.tuna.tsinghua.edu.cn/clickhouse/deb/stable/ main/
RHEL/CentOS 用戶
新建 /etc/yum.repos.d/clickhouse.repo,內(nèi)容為
[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
創(chuàng)建數(shù)據(jù)庫和一張表測試
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 :)
上述內(nèi)容就是CentOS7中怎么安裝clickhouse,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。