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/linux/sql-server-linux-configure-msdtc-docker.md
+17-20Lines changed: 17 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,30 +55,27 @@ In this command, the **RPC Endpoint Mapper** service has been bound to port 1350
55
55
56
56
## Configure the firewall
57
57
58
-
In order to communicate with and through the host, you must also configure the firewall on the host server for the containers. Open the firewall for all ports that docker container exposes for communication. In the previous example, this would be ports 135, 51433, 13500, and 51000. These are the ports on the host itself and not the ports they map to in the container. So, if RPC Endpoint mapper port 13500 of container was mapped to host port 13501, then port 13501 would not be opened in the firewall for communication of the host.
58
+
In order to communicate with and through the host, you must also configure the firewall on the host server for the containers. Open the firewall for all ports that docker container exposes for communication. In the previous example, this would be ports 135, 51433, 13500, and 51000. These are the ports on the host itself and not the ports they map to in the container. So, if RPC Endpoint mapper port 13500 of container was mapped to host port 13501, then port 13501 (not 13500) should be opened in the firewall for communication with the host.
59
59
60
-
The following example shows how to create these rules on Ubuntu.
60
+
The following example shows how to create these rules on Ubuntu.
61
61
62
-
sudo ufw allow from any to any port 13500 proto tcp
63
-
64
-
sudo ufw allow from any to any port 51433 proto tcp
65
-
66
-
sudo ufw allow from any to any port 51000 proto tcp
67
-
68
-
sudo ufw allow from any to any port 135 proto tcp
69
-
70
-
The following example shows how this could be done on Red Hat Enterprise Linux (RHEL):
For more information about MSDTC on Linux, see [How to configure the Microsoft Distributed Transaction Coordinator (MSDTC) on Linux](sql-server-linux-configure-msdtc.md).
0 commit comments