Add new release doc for 2.0.2#612
Merged
davidzollo merged 11 commits intoapache:masterfrom Jan 6, 2022
Merged
Conversation
zhongjiajie
commented
Dec 29, 2021
8a67ee3 to
d5432b5
Compare
zhongjiajie
commented
Jan 5, 2022
Comment on lines
+116
to
+136
| ## 初始化数据库 | ||
|
|
||
| DolphinScheduler 元数据存储在关系型数据库中,目前支持 PostgreSQL 和 MySQL,如果使用 MySQL 则需要手动下载 [mysql-connector-java 驱动][mysql] (8.0.16) 并移动到 DolphinScheduler 的 lib目录下。下面以 MySQL 为例,说明如何初始化数据库 | ||
|
|
||
| ```shell | ||
| mysql -uroot -p | ||
|
|
||
| mysql> CREATE DATABASE dolphinscheduler DEFAULT CHARACTER SET utf8 DEFAULT COLLATE utf8_general_ci; | ||
|
|
||
| # 修改 {user} 和 {password} 为你希望的用户名和密码 | ||
| mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'%' IDENTIFIED BY '{password}'; | ||
| mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO '{user}'@'localhost' IDENTIFIED BY '{password}'; | ||
|
|
||
| mysql> flush privileges; | ||
| ``` | ||
|
|
||
| 完成上述步骤后,您已经为 DolphinScheduler 创建一个新数据库,现在你可以通过快速的 Shell 脚本来初始化数据库 | ||
|
|
||
| ```shell | ||
| sh script/create-dolphinscheduler.sh | ||
| ``` |
Member
Author
There was a problem hiding this comment.
I am quite sure about this, please may sure Shell script script/create-dolphinscheduler.sh work for version 2.0.2 @lenboo
Contributor
There was a problem hiding this comment.
I am quite sure about this, please may sure Shell script
script/create-dolphinscheduler.shwork for version 2.0.2 @lenboo
It's ok now.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Would change to formal PR until 2.0.2 release
TODO