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
- If you want to use a GUI to work on your database we recommend using a local GUI (Such as [HeidiSQL](../../best-practices/database/how-to-use-heidisql-on-hypernode.md) on Windows) instead of an online GUI ([PHPMyAdmin](../mysql/how-to-use-phpmyadmin.md)).
43
43
44
-
## Whitelisting Your IP Address
45
-
46
-
Port 3306 is firewalled on all Hypernodes to prevent hackers and bruteforces from connecting to your MySQL instance. That's why if you want to externally connect to MySQL on the Hypernode, you’ll need to add the remote IP address to the allowlist first.
47
-
48
-
### Allow an IP via the hypernode-systemctl CLI tool
49
-
50
-
First check which IP addresses have been whitelisted already, if any.
51
-
52
-
```bash
53
-
hypernode-systemctl whitelist get
54
-
```
55
-
56
-
### Adding to the Allowlist
57
-
58
-
To add more values to your allowlist you can run the following. Please note that descriptions are optional:
59
-
60
-
```bash
61
-
hypernode-systemctl whitelist add database 203.0.113.4 --description "my description"
62
-
```
63
-
64
-
### Removing From the Allowlist
65
-
66
-
To remove IP addresses from your allowlists you can run the following:
Voila, now your Hypernode database is reachable through localhost port 3306!
121
85
86
+
## Allowlisting Your IP Address
87
+
88
+
Port 3306 is firewalled on all Hypernodes to prevent hackers and bruteforces from connecting to your MySQL instance. That's why if you want to externally connect to MySQL on the Hypernode, you’ll need to add the remote IP address to the allowlist first.
89
+
90
+
### Allow an IP via the hypernode-systemctl CLI tool
91
+
92
+
First check which IP addresses have been whitelisted already, if any.
93
+
94
+
```bash
95
+
hypernode-systemctl whitelist get
96
+
```
97
+
98
+
### Adding to the Allowlist
99
+
100
+
To add more values to your allowlist you can run the following. Please note that descriptions are optional:
101
+
102
+
```bash
103
+
hypernode-systemctl whitelist add database 203.0.113.4 --description "my description"
104
+
```
105
+
106
+
### Removing From the Allowlist
107
+
108
+
To remove IP addresses from your allowlists you can run the following:
0 commit comments