You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/mindsdb_sql/connect/dbeaver.mdx
+14-22Lines changed: 14 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,11 @@ title: MindsDB and DBeaver
3
3
sidebarTitle: DBeaver
4
4
---
5
5
6
-
DBeaver is a database tool that allows you to connect to and work with
7
-
various database engines. You can download it [here](https://dbeaver.io/).
6
+
DBeaver is a database tool that allows you to connect to and work with various database engines. You can download it [here](https://dbeaver.io/).
8
7
9
8
## Data Setup
10
9
11
-
First, create a new database connection in DBeaver by clicking the icon, as
12
-
shown below.
10
+
First, create a new database connection in DBeaver by clicking the icon, as shown below.
13
11
14
12
<palign="center">
15
13
<imgsrc="/assets/sql/dbeaver_1.png" />
@@ -31,28 +29,23 @@ Now it's time to fill in the connection details.
31
29
<imgsrc="/assets/sql/dbeaver_3.png" />
32
30
</p>
33
31
34
-
There are three options, as below.
35
-
36
-
<Tabs>
37
-
<Tabtitle="Local MindsDB">
38
-
You can connect to your local MindsDB. To do that, please use the connection details below:
32
+
Use the following parameters:
39
33
40
-
```
41
-
Hostname: `127.0.0.1`
42
-
Port: `47334`
43
-
Username: `mindsdb`
44
-
Password: <leaveitempty>
45
-
Database: <leaveitempty>
46
-
```
47
-
</Tab>
48
-
</Tabs>
34
+
*`127.0.0.1` or `localhost` for the host name. If you run MindsDB in cloud, specify the host name accordingly.
35
+
36
+
*`47335` for the port, which is the port of the MySQL API exposed by MindsDB. Learn more about [available APIs here](/setup/environment-vars#mindsdb-apis).
37
+
38
+
*`mindsdb` for the database name.
39
+
40
+
*`mindsdb` for the user name, unless specified differently in the [`config.json` file](/setup/custom-config#auth).
41
+
42
+
*`<empty>` for the password, unless specified differently in the [`config.json` file](/setup/custom-config#auth).
49
43
50
44
Now we are ready to test the connection.
51
45
52
46
## Testing the Connection
53
47
54
-
Click on the `Test Connection...` button to check if all the provided data
55
-
allows you to connect to MindsDB.
48
+
Click on the `Test Connection...` button to check if all the provided data allows you to connect to MindsDB.
56
49
57
50
On success, you should see the message, as below.
58
51
@@ -62,8 +55,7 @@ On success, you should see the message, as below.
62
55
63
56
## Let's Run Some Queries
64
57
65
-
To finally make sure that our MindsDB database connection works, let's run some
66
-
queries.
58
+
To finally make sure that our MindsDB database connection works, let's run some queries.
0 commit comments