ChrisYuan commented on code in PR #11326:
URL: https://github.com/apache/dolphinscheduler/pull/11326#discussion_r943040049
##########
docs/docs/en/guide/howto/datasource-setting.md:
##########
@@ -51,16 +52,44 @@ mysql> GRANT ALL PRIVILEGES ON dolphinscheduler.* TO
'{user}'@'localhost';
mysql> FLUSH PRIVILEGES;
```
-Then, modify `./bin/env/dolphinscheduler_env.sh` to use mysql, change {user}
and {password} to what you set in the previous step.
+For PostgreSQL:
+```shell
+# Use psql-tools to login PostgreSQL
+psql
+# Create a database
+postgres=# CREATE DATABASE dolphinscheduler;
+# Replace {user} and {password} with your username and password
Review Comment:
OK, got it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]