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
##### Fedora, Red Hat Enterprise Linux 8+, CentOS 8+
134
+
#[SLES](#tab/SLES)
110
135
111
-
Use the dnf package manager: `sudo dnf install nfs-utils`.
136
+
```bash
137
+
sudo zypper install nfs-client
138
+
```
112
139
113
-
Older versions of Red Hat Enterprise Linux and CentOS use the yum package manager: `sudo yum install nfs-common`.
140
+
# [Ubuntu/Debian](#tab/Ubuntu/Debian)
114
141
115
-
##### openSUSE
116
142
117
-
Use the zypper package manager: `sudo zypper install-nfscommon`.
143
+
```bash
144
+
sudo apt update
145
+
sudo apt install nfs-common
146
+
```
147
+
---
118
148
119
149
### Cause 4: Firewall blocking port 2049
120
150
121
151
The NFS protocol communicates to its server over port 2049. Make sure that this port is open to the storage account (the NFS server).
122
152
123
153
#### Solution
124
154
125
-
Verify that port 2049 is open on your client by running the following command: `telnet <storageaccountnamehere>.file.core.windows.net 2049`. If the port isn't open, open it.
155
+
Verify that port 2049 is open on your client by running the following command. If the port isn't open, open it.
0 commit comments