Skip to content

Commit

Permalink
Merge pull request #1185 from yangj1211/2.0.1
Browse files Browse the repository at this point in the history
add doc of 2.0.1
  • Loading branch information
yangj1211 authored Dec 11, 2024
2 parents 38e127c + db3cf0e commit 4543c5b
Show file tree
Hide file tree
Showing 28 changed files with 167 additions and 115 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

### 建设情况

目前,MatrixOne v24.2.0.0 已经发布了,您可以通过[版本发布指南](./../../Release-Notes/v24.2.0.0.md)来了解最新的发布信息,其中包含了最新的修改与优化。
目前,MatrixOne v24.2.0.1 已经发布了,您可以通过[版本发布指南](./../../Release-Notes/v24.2.0.1.md)来了解最新的发布信息,其中包含了最新的修改与优化。

关于长期的项目规划,请参阅 [MatrixOne Roadmap](https://github.com/matrixorigin/matrixone/issues/613)

Expand Down
2 changes: 1 addition & 1 deletion docs/MatrixOne/Deploy/deploy-matrixone-single-with-s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -736,7 +736,7 @@ cnservices = [

```
先配置好cn.toml、tn.toml、log.toml
mo_ctl set_conf MO_CONTAINER_IMAGE=matrixorigin/matrixone/2.0.0 #设置镜像
mo_ctl set_conf MO_CONTAINER_IMAGE=matrixorigin/matrixone/2.0.1 #设置镜像
mo_ctl set_conf MO_CONTAINER_NAME=mo # 设置容器名
mo_ctl set_conf MO_CONTAINER_CONF_HOST_PATH=/data/mo_confs/ # 设置宿主机上的mo配置文件存放的目录
mo_ctl set_conf MO_CONTAINER_CONF_CON_FILE="/etc/launch.toml" # 设置容器启动时容器内的配置文件路径
Expand Down
2 changes: 1 addition & 1 deletion docs/MatrixOne/Deploy/update-MatrixOne-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
root@master0 ~]# mysql -h $(kubectl get svc/mo-tp-cn -n mo-hn -o jsonpath='{.spec.clusterIP}') -P 6001 -uroot -p111
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MySQL connection id is 1005
Server version: 8.0.30-MatrixOne-v2.0.0 MatrixOne
Server version: 8.0.30-MatrixOne-v2.0.1 MatrixOne
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
Current pager: stdout
Using outfile: ''
Using delimiter: ;
Server version: 8.0.30-MatrixOne-v2.0.0 MatrixOne
Server version: 8.0.30-MatrixOne-v2.0.1 MatrixOne
Protocol version: 10
Connection: 127.0.0.1 via TCP/IP
Client characterset: utf8mb4
Expand Down
2 changes: 1 addition & 1 deletion docs/MatrixOne/Develop/connect-mo/database-client-tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ MatrixOne 现在支持通过以下几种数据库客户端工具的方式连接
```
Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1031
Server version: 8.0.30-MatrixOne-v2.0.0 MatrixOne
Server version: 8.0.30-MatrixOne-v2.0.1 MatrixOne
Copyright (c) 2000, 2022, Oracle and/or its affiliates.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ PyMySQL 是一个纯 Python MySQL 客户端库。
```
> python3 pymysql_connect_matrixone.py
Database version : 8.0.30-MatrixOne-v2.0.0
Database version : 8.0.30-MatrixOne-v2.0.1
```
## 使用 sqlalchemy 连接 MatrixOne
Expand Down
2 changes: 1 addition & 1 deletion docs/MatrixOne/Develop/import-data/bulk-load/load-csv.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ __Note__: *csv*(逗号分隔值)文件是一种特殊的文件类型,可
3. 使用 Docker 启动 MatrixOne,启动时将存放了数据文件的目录 *~/tmp/docker_loaddata_demo/* 挂载到容器的某个目录下,这里容器目录以 */ssb-dbgen-path* 为例:
```
sudo docker run --name matrixone --privileged -d -p 6001:6001 -v ~/tmp/docker_loaddata_demo/:/ssb-dbgen-path:rw matrixorigin/matrixone:2.0.0
sudo docker run --name matrixone --privileged -d -p 6001:6001 -v ~/tmp/docker_loaddata_demo/:/ssb-dbgen-path:rw matrixorigin/matrixone:2.0.1
```
4. 连接 MatrixOne 服务:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@ select * from tool;

## 限制说明

MatrixOne v24.2.0.0 版本已经支持 MySQL 的建表语句,因此可以顺畅地将 MySQL 表迁移到 MatrixOne 上。不过需要注意,在迁移过程中,不兼容 MySQL 部分关键字,如 `engine=` 等,在 MatrixOne 中会被自动忽略,也不会影响表结构的迁移。
MatrixOne v24.2.0.1 版本已经支持 MySQL 的建表语句,因此可以顺畅地将 MySQL 表迁移到 MatrixOne 上。不过需要注意,在迁移过程中,不兼容 MySQL 部分关键字,如 `engine=` 等,在 MatrixOne 中会被自动忽略,也不会影响表结构的迁移。

但需要特别注意的是,尽管 MatrixOne 支持 MySQL 建表语句,如果迁移的表中包含不兼容的数据类型、触发器、函数或存储过程,仍需要手动修改。更多详细的兼容性信息,参见 [MySQL 兼容性](../../../Overview/feature/mysql-compatibility.md)
2 changes: 1 addition & 1 deletion docs/MatrixOne/FAQs/product-faqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ MatrixOne 0.8.0 及以上版本皆可使用 `mo_ctl upgrade latest` 从低版本

**现在 MatrixOne 发稳定版了吗?推荐使用哪个版本?**

MatrixOne 现已发布 v24.2.0.0 版本,在稳定性上我们做了大量的优化工作,已经可以用于生产业务,欢迎大家试用反馈。
MatrixOne 现已发布 v24.2.0.1 版本,在稳定性上我们做了大量的优化工作,已经可以用于生产业务,欢迎大家试用反馈。

**有没有 MatrixOne 云版本?想快速测试看看**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ GCC_VERSION="8.5.0"
CLANG_VERSION="13.0"
GO_VERSION="1.22.3"
MO_GIT_URL="https://github.com/matrixorigin/matrixone.git"
MO_DEFAULT_VERSION="v2.0.0"
MO_DEFAULT_VERSION="v2.0.1"
GOPROXY="https://goproxy.cn,direct"
STOP_INTERVAL="5"
START_INTERVAL="2"
Expand All @@ -212,7 +212,7 @@ PPROF_PROFILE_DURATION="30"
```
mo_ctl set_conf MO_PATH="yourpath" # 设置自定义的MatrixOne下载路径
mo_ctl set_conf MO_GIT_URL="https://githubfast.com/matrixorigin/matrixone.git" #针对github原地址下载过慢问题,设置镜像下载地址
mo_ctl set_conf MO_DEFAULT_VERSION="v2.0.0" # 设置所下载的MatrixOne版本
mo_ctl set_conf MO_DEFAULT_VERSION="v2.0.1" # 设置所下载的MatrixOne版本
mo_ctl set_conf MO_DEPLOY_MODE=git #设置MatrixOne部署方式,此为源码部署方式
```
Expand All @@ -231,7 +231,7 @@ mo_ctl set_conf MO_DEPLOY_MODE=git #设置MatrixOne部署方式,此为源码
=== "通过 MatrixOne (稳定版本) 代码安装"
```
mo_ctl deploy v2.0.0
mo_ctl deploy v2.0.1
```
## 步骤 4:启动 MatrixOne 服务
Expand Down Expand Up @@ -268,7 +268,7 @@ root@VM-16-2-debian:~# mo_ctl connect
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 15
Server version: 8.0.30-MatrixOne-v2.0.0 MatrixOne
Server version: 8.0.30-MatrixOne-v2.0.1 MatrixOne

Copyright (c) 2000, 2023, Oracle and/or its affiliates.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,47 +94,47 @@ __Tips__: 建议你下载安装这两个下载工具其中之一,方便后续
x86 架构系统安装包:
```bash
wget https://github.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-musl-x86_64.zip
unzip mo-v2.0.0-musl-x86_64.zip
wget https://github.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-musl-x86_64.zip
unzip mo-v2.0.1-musl-x86_64.zip
```
ARM 架构系统安装包:
```bash
wget https://github.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-musl-arm64.zip
unzip mo-v2.0.0-musl-arm64.zip
wget https://github.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-musl-arm64.zip
unzip mo-v2.0.1-musl-arm64.zip
```
如 github 原地址下载过慢,您可尝试从以下地址下载镜像包:
```
wget https://githubfast.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-musl-xxx.zip
wget https://githubfast.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-musl-xxx.zip
```
=== "**下载方式二:`curl` 工具下载二进制包**"
x86 架构系统安装包:
```bash
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-musl-x86_64.zip
unzip mo-v2.0.0-musl-x86_64.zip
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-musl-x86_64.zip
unzip mo-v2.0.1-musl-x86_64.zip
```
ARM 架构系统安装包:
```bash
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-musl-arm64.zip
unzip mo-v2.0.0-musl-arm64.zip
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-musl-arm64.zip
unzip mo-v2.0.1-musl-arm64.zip
```
如 github 原地址下载过慢,您可尝试从以下地址下载镜像包:
```
curl -OL https://githubfast.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-musl-xxx.zip
curl -OL https://githubfast.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-musl-xxx.zip
```
=== "**下载方式三:页面下载**"
如果你想通过更直观的页面下载的方式下载,直接点击进入[版本 2.0.0](https://github.com/matrixorigin/matrixone/releases/tag/v2.0.0),下拉找到 **Assets** 栏,点击安装包 *mo-v2.0.0-musl-x86_64.zip* 或者 *mo-v2.0.0-musl-arm64.zip* 下载再使用 ```unzip``` 命令解压即可。
如果你想通过更直观的页面下载的方式下载,直接点击进入[版本 2.0.1](https://github.com/matrixorigin/matrixone/releases/tag/v2.0.1),下拉找到 **Assets** 栏,点击安装包 *mo-v2.0.1-musl-x86_64.zip* 或者 *mo-v2.0.1-musl-arm64.zip* 下载再使用 ```unzip``` 命令解压即可。
### 基于 glibc 构建的二进制包
Expand All @@ -143,48 +143,48 @@ __Tips__: 建议你下载安装这两个下载工具其中之一,方便后续
x86 架构系统安装包:
```bash
wget https://github.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-linux-x86_64.zip
unzip mo-v2.0.0-linux-x86_64.zip
wget https://github.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-linux-x86_64.zip
unzip mo-v2.0.1-linux-x86_64.zip
```
ARM 架构系统安装包:
```bash
wget https://github.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-linux-arm64.zip
unzip mo-v2.0.0-linux-arm64.zip
wget https://github.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-linux-arm64.zip
unzip mo-v2.0.1-linux-arm64.zip
```
如 github 原地址下载过慢,您可尝试从以下地址下载镜像包:
```
wget https://githubfast.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-linux-xxx.zip
wget https://githubfast.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-linux-xxx.zip
```
=== "**下载方式二:`curl` 工具下载二进制包**"
x86 架构系统安装包:
```bash
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-linux-x86_64.zip
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-linux-x86_64.zip
unzip mo-v1.2.--linux-x86_64.zip
```
ARM 架构系统安装包:
```bash
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-linux-arm64.zip
unzip mo-v2.0.0-linux-arm64.zip
curl -OL https://github.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-linux-arm64.zip
unzip mo-v2.0.1-linux-arm64.zip
```
如 github 原地址下载过慢,您可尝试从以下地址下载镜像包:
```
curl -OL https://githubfast.com/matrixorigin/matrixone/releases/download/v2.0.0/mo-v2.0.0-linux-xxx.zip
curl -OL https://githubfast.com/matrixorigin/matrixone/releases/download/v2.0.1/mo-v2.0.1-linux-xxx.zip
```
=== "**下载方式三:页面下载**"
如果你想通过更直观的页面下载的方式下载,直接点击进入[版本 2.0.0](https://github.com/matrixorigin/matrixone/releases/tag/v2.0.0),下拉找到 **Assets** 栏,点击安装包 *mo-v2.0.0-linux-x86_64.zip* 或者 *mo-v2.0.0-linux-arm64.zip* 下载再使用 ```unzip``` 命令解压即可。
如果你想通过更直观的页面下载的方式下载,直接点击进入[版本 2.0.1](https://github.com/matrixorigin/matrixone/releases/tag/v2.0.1),下拉找到 **Assets** 栏,点击安装包 *mo-v2.0.1-linux-x86_64.zip* 或者 *mo-v2.0.1-linux-arm64.zip* 下载再使用 ```unzip``` 命令解压即可。
## 步骤 3:安装 mo_ctl 工具
Expand All @@ -203,26 +203,26 @@ wget https://raw.githubusercontent.com/matrixorigin/mo_ctl_standalone/main/insta
通过以下命令调整参数:
```
mo_ctl set_conf MO_PATH="/yourpath/mo-v2.0.0-xx-xx" #设置MatrixOne路径为二进制解压文件目录
mo_ctl set_conf MO_CONF_FILE="/yourpath/mo-v2.0.0-xx-xx/etc/launch/launch.toml" #设置MatrixOne配置文件路径
mo_ctl set_conf MO_PATH="/yourpath/mo-v2.0.1-xx-xx" #设置MatrixOne路径为二进制解压文件目录
mo_ctl set_conf MO_CONF_FILE="/yourpath/mo-v2.0.1-xx-xx/etc/launch/launch.toml" #设置MatrixOne配置文件路径
mo_ctl set_conf MO_DEPLOY_MODE=binary #设置MatrixOne部署方式,此为二进制部署方式
```
## 步骤 4:启动 MatrixOne 服务
通过 `mo_ctl start` 命令一键启动 MatrixOne 服务。
如果运行正常将出现以下日志。MatrixOne 的相关运行日志会在 `/yourpath/mo-v2.0.0-xx-xx/matrixone/logs/` 中。
如果运行正常将出现以下日志。MatrixOne 的相关运行日志会在 `/yourpath/mo-v2.0.1-xx-xx/matrixone/logs/` 中。
```
> mo_ctl start
2024-03-07 14:34:04.942 UTC+0800 [INFO] No mo-service is running
2024-03-07 14:34:04.998 UTC+0800 [INFO] Get conf succeeded: MO_DEPLOY_MODE="binary"
2024-03-07 14:34:05.024 UTC+0800 [INFO] GO memory limit(Mi): 14745
2024-03-07 14:34:05.072 UTC+0800 [INFO] Starting mo-service: cd /Users/admin/mo-v2.0.0-linux-arm64/ && GOMEMLIMIT=14745MiB /Users/admin/mo-v2.0.0-linux-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v2.0.0-linux-arm64/etc/launch/launch.toml >/Users/admin/mo-v2.0.0-linux-arm64/matrixone/logs/stdout-20240307_143405.log 2>/Users/admin/mo-v2.0.0-linux-arm64/matrixone/logs/stderr-20240307_143405.log
2024-03-07 14:34:05.072 UTC+0800 [INFO] Starting mo-service: cd /Users/admin/mo-v2.0.1-linux-arm64/ && GOMEMLIMIT=14745MiB /Users/admin/mo-v2.0.1-linux-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v2.0.1-linux-arm64/etc/launch/launch.toml >/Users/admin/mo-v2.0.1-linux-arm64/matrixone/logs/stdout-20240307_143405.log 2>/Users/admin/mo-v2.0.1-linux-arm64/matrixone/logs/stderr-20240307_143405.log
2024-03-07 14:34:05.137 UTC+0800 [INFO] Wait for 2 seconds
2024-03-07 14:34:07.261 UTC+0800 [INFO] At least one mo-service is running. Process info:
501 27145 1 0 2:34下午 ?? 0:00.18 /Users/admin/mo-v2.0.0-linux-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v2.0.0-linux-arm64/etc/launch/launch.toml
501 27145 1 0 2:34下午 ?? 0:00.18 /Users/admin/mo-v2.0.1-linux-arm64/mo-service -daemon -debug-http :9876 -launch /Users/admin/mo-v2.0.1-linux-arm64/etc/launch/launch.toml
2024-03-07 14:34:07.284 UTC+0800 [INFO] List of pid(s):
27145
2024-03-07 14:34:07.308 UTC+0800 [INFO] Start succeeded
Expand All @@ -243,7 +243,7 @@ mo_ctl set_conf MO_DEPLOY_MODE=binary #设置MatrixOne部署方式,此为二
2024-03-07 14:34:59.942 UTC+0800 [INFO] Ok, connecting for user ...
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 426
Server version: 8.0.30-MatrixOne-v2.0.0 MatrixOne
Server version: 8.0.30-MatrixOne-v2.0.1 MatrixOne

Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,18 +70,18 @@ Debian11.1 版本默认没有安装 MySQL Client,因此需要手动下载安
使用以下命令将从 Docker Hub 中拉取 MatrixOne 镜像,你可以选择稳定版本镜像,或开发版本镜像,当 Tag 为 `latest` 时获取最新稳定版本。
=== "稳定版本的镜像(2.0.0)"
=== "稳定版本的镜像(2.0.1)"
```bash
docker pull matrixorigin/matrixone:2.0.0
docker run -d -p 6001:6001 --name matrixone matrixorigin/matrixone:2.0.0
docker pull matrixorigin/matrixone:2.0.1
docker run -d -p 6001:6001 --name matrixone matrixorigin/matrixone:2.0.1
```
如果你使用的是中国大陆的网络,你可以拉取阿里云上的 MatrixOne 稳定版本镜像:
```bash
docker pull registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:2.0.0
docker run -d -p 6001:6001 --name matrixone registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:2.0.0
docker pull registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:2.0.1
docker run -d -p 6001:6001 --name matrixone registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:2.0.1
```
=== "开发版本的镜像"
Expand All @@ -105,7 +105,7 @@ Debian11.1 版本默认没有安装 MySQL Client,因此需要手动下载安
若 Docker 版本低于 20.10.18 或者 Docker client 和 Docker server 的版本不一致,推荐同时升级到 Docker 最新稳定版本后再尝试。若坚持使用,需要在 ```docker run``` 命令中加上参数 ```--privileged=true```,如:
```bash
docker run -d -p 6001:6001 --name matrixone --privileged=true matrixorigin/matrixone:2.0.0
docker run -d -p 6001:6001 --name matrixone --privileged=true matrixorigin/matrixone:2.0.1
```

如需挂载数据目录或配置自定义文件,参见[挂载目录到 Docker 容器](../../Maintain/mount-data-by-docker.md)
Expand All @@ -128,7 +128,7 @@ wget https://raw.githubusercontent.com/matrixorigin/mo_ctl_standalone/main/insta

```
mo_ctl set_conf MO_CONTAINER_DATA_HOST_PATH="/yourpath/mo/" # 宿主机mo的数据目录
mo_ctl set_conf MO_CONTAINER_IMAGE="matrixorigin/matrixone:2.0.0" # 设置镜像,国内的可以用registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:2.0.0
mo_ctl set_conf MO_CONTAINER_IMAGE="matrixorigin/matrixone:2.0.1" # 设置镜像,国内的可以用registry.cn-shanghai.aliyuncs.com/matrixorigin/matrixone:2.0.1
mo_ctl set_conf MO_DEPLOY_MODE=docker #设置MatrixOne部署方式,此为docker部署方式
```

Expand Down Expand Up @@ -162,7 +162,7 @@ MO_CONTAINER_EXTRA_MOUNT_OPTION="" #额外的挂载参数,比如 -v xx:xx:xx
=== "通过 MatrixOne (稳定版本) 代码安装"

```
mo_ctl deploy v2.0.0
mo_ctl deploy v2.0.1
```

- 启动 Matrixone
Expand Down Expand Up @@ -194,7 +194,7 @@ mysql -h 127.0.0.1 -P 6001 -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5982
Server version: 8.0.30-MatrixOne-v2.0.0 MatrixOne
Server version: 8.0.30-MatrixOne-v2.0.1 MatrixOne
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Expand All @@ -221,7 +221,7 @@ mo_ctl connect
2024-03-08 11:13:34.420 UTC+0800 [INFO] Ok, connecting for user ...
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5849
Server version: 8.0.30-MatrixOne-v2.0.0 MatrixOne
Server version: 8.0.30-MatrixOne-v2.0.1 MatrixOne
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ GCC_VERSION="8.5.0"
CLANG_VERSION="13.0"
GO_VERSION="1.22.3"
MO_GIT_URL="https://github.com/matrixorigin/matrixone.git"
MO_DEFAULT_VERSION="v2.0.0"
MO_DEFAULT_VERSION="v2.0.1"
GOPROXY="https://goproxy.cn,direct"
STOP_INTERVAL="5"
START_INTERVAL="2"
Expand All @@ -193,7 +193,7 @@ PPROF_PROFILE_DURATION="30"
```
mo_ctl set_conf MO_PATH="yourpath" # 设置自定义的MatrixOne下载路径
mo_ctl set_conf MO_GIT_URL="https://githubfast.com/matrixorigin/matrixone.git" #针对github原地址下载过慢问题,设置镜像下载地址
mo_ctl set_conf MO_DEFAULT_VERSION="v2.0.0" # 设置所下载的MatrixOne版本
mo_ctl set_conf MO_DEFAULT_VERSION="v2.0.1" # 设置所下载的MatrixOne版本
mo_ctl set_conf MO_DEPLOY_MODE=git #设置MatrixOne部署方式,此为源码部署方式
```
Expand All @@ -212,7 +212,7 @@ mo_ctl set_conf MO_DEPLOY_MODE=git #设置MatrixOne部署方式,此为源码
=== "通过 MatrixOne (稳定版本) 代码安装"
```
mo_ctl deploy v2.0.0
mo_ctl deploy v2.0.1
```
## 步骤 4:启动 MatrixOne 服务
Expand Down Expand Up @@ -249,7 +249,7 @@ mo_ctl set_conf MO_DEPLOY_MODE=git #设置MatrixOne部署方式,此为源码
mysql: [Warning] Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 15
Server version: 8.0.30-MatrixOne-v2.0.0 MatrixOne
Server version: 8.0.30-MatrixOne-v2.0.1 MatrixOne

Copyright (c) 2000, 2023, Oracle and/or its affiliates.

Expand Down
Loading

0 comments on commit 4543c5b

Please sign in to comment.