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
# Allow incoming traffic on port 3322 (required if firewalld is enabled)
150
+
iptables -I INPUT -p tcp --dport 3322 -j ACCEPT
151
+
```
152
+
153
+
Now the internal virtual machine is exposed to the internet and can be accessed remotely.
154
+
114
155
### Troubleshooting Adding Compute Node
115
156
116
157
On the Controller node, execute:
@@ -173,6 +214,10 @@ If Docker containers don't auto-restart after a system reboot, run:
173
214
docker start $(docker ps -a -q)
174
215
```
175
216
217
+
### Disadvantages
218
+
219
+
The VM image is written to death, there is no way to use your own custom image, and there is no way to export it, and the original image does not have password login and ROOT login available.
0 commit comments