Skip to content

Commit

Permalink
Update develop_builtin_functions.md (#1839)
Browse files Browse the repository at this point in the history
  • Loading branch information
dengn authored Mar 8, 2022
1 parent 4a59bcf commit b074b33
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,11 +371,15 @@ Step2: Run `./mo-server system_vars_config.toml` to launch MatrixOne, the Matrix

!!! info
The logger print level of `system_vars_config.toml` is set to default as `DEBUG`, which will print a lot of information for you. If you only care about what your built-in function will print, you can modify the `system_vars_config.toml` and set `cubeLogLevel` and `level` to `ERROR` level.


cubeLogLevel = "error"
level = "error"

level = "error"


!!! info
Sometimes a `port is in use` error at port 50000 will occur. You could checkout what process in occupying port 50000 by `lsof -i:50000`. This command helps you to get the PIDNAME of this process, then you can kill the process by `kill -9 PIDNAME`.

Step3: Connect to MatrixOne server with a MySQL client. Use the built-in test account for example:

user: dump
Expand Down

0 comments on commit b074b33

Please sign in to comment.