2020-04-03 13:23:32 +00:00
|
|
|
---
|
|
|
|
toc_priority: 47
|
2021-01-20 22:29:45 +00:00
|
|
|
toc_title: ClickHouse Upgrade
|
2020-04-03 13:23:32 +00:00
|
|
|
---
|
|
|
|
|
2021-01-20 22:29:45 +00:00
|
|
|
# ClickHouse Upgrade {#clickhouse-upgrade}
|
2019-02-06 12:52:46 +00:00
|
|
|
|
2020-06-17 17:44:45 +00:00
|
|
|
If ClickHouse was installed from `deb` packages, execute the following commands on the server:
|
2019-02-06 12:52:46 +00:00
|
|
|
|
2020-03-20 10:10:48 +00:00
|
|
|
``` bash
|
2019-09-23 15:31:46 +00:00
|
|
|
$ sudo apt-get update
|
|
|
|
$ sudo apt-get install clickhouse-client clickhouse-server
|
|
|
|
$ sudo service clickhouse-server restart
|
2019-02-06 12:52:46 +00:00
|
|
|
```
|
|
|
|
|
2020-06-17 17:44:45 +00:00
|
|
|
If you installed ClickHouse using something other than the recommended `deb` packages, use the appropriate update method.
|
2019-02-06 12:52:46 +00:00
|
|
|
|
2021-03-30 12:51:15 +00:00
|
|
|
!!! note "Note"
|
2021-03-31 15:18:43 +00:00
|
|
|
You can update multiple servers at once as soon as there is no moment when all replicas of one shard are offline.
|
2021-01-20 22:29:45 +00:00
|
|
|
|
|
|
|
The upgrade of older version of ClickHouse to specific version:
|
|
|
|
|
2021-02-10 09:02:42 +00:00
|
|
|
As an example:
|
|
|
|
|
2021-02-10 09:04:25 +00:00
|
|
|
`xx.yy.a.b` is a current stable version. The latest stable version could be found [here](https://github.com/ClickHouse/ClickHouse/releases)
|
2021-01-20 22:29:45 +00:00
|
|
|
|
|
|
|
```bash
|
|
|
|
$ sudo apt-get update
|
2021-02-10 09:01:43 +00:00
|
|
|
$ sudo apt-get install clickhouse-server=xx.yy.a.b clickhouse-client=xx.yy.a.b clickhouse-common-static=xx.yy.a.b
|
2021-01-20 22:29:45 +00:00
|
|
|
$ sudo service clickhouse-server restart
|
|
|
|
```
|