clickhouse 安装
clickhouse中文文档地址:
https://clickhouse.com/docs/zh/getting-started/tutorial/
centos安装部署
采用tgz的方式安装
官网上安装部署有比较详细的说明,具体文档地址如下,支持deb、rpm、tgz、docker等安装部署方式
https://clickhouse.com/docs/zh/getting-started/install/
tgz包下载地址:
https://packages.clickhouse.com/tgz/
https://github.com/ClickHouse/ClickHouse/releases
下载的版本是22.3.2.2,以此版本为例,tgz包上传到同一个目录下,执行以下操作
1 2 3 4 5 6 7 8 9 10 11 |
|
启动server
关于tgz安装的时候这条命令
sudo /etc/init.d/clickhouse-server start
查看是否启动成功
ps -ef|grep clickhouse
命令行登录(默认没有密码)
$ clickhouse-client
修改密码
1 |
|
注:只读文件,退出时命令: wq!
重启服务: systemctl restart clickhouse-server 密码登录: clickhouse-client --password xxxx
登录:
默认端口 9000
远程访问
vim /etc/clickhouse-server/config.xml
之后重启clickhouse-server
systemctl restart clickhouse-server
防火墙: 开放 22端口: firewall-cmd --zone=public --add-port=9000/tcp --permanent
firewall-cmd --zone=public --add-port=8123/tcp --permanent
重新载入一下: firewall-cmd --reload
web浏览器访问:
前面两步做完后,可以通过 http://127.0.0.1:8123/play 访问到clickhouse界面,然后再password处输入密码即可