SECURITY WARNING: Never run commands you don't understand. Always review code before execution. Use at your own risk.
Storage New Added 8 September 2026

Linux: mount error(13): Permission denied (CIFS/SMB)

The SMB server rejected the credentials or the requested protocol. Common causes are a domain user given without the domain, a share that requires SMB 3 while the client negotiated SMB 1, or an Azure Files account key that has been rotated.

Quick fix

Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.

Quick fix
# Verbose kernel messages name the real reason
sudo mount -t cifs //server/share /mnt -o username=user,vers=3.1.1 -v
dmesg | tail -20

# Domain accounts need the domain
sudo mount -t cifs //server/share /mnt \
  -o username=user,domain=CORP,vers=3.1.1

# Keep credentials out of the mount line and out of ps
# /etc/cifs-creds  (chmod 600)
username=user
password=secret
domain=CORP
sudo mount -t cifs //server/share /mnt -o credentials=/etc/cifs-creds

# Azure Files requires vers=3.1.1 and the storage account name as user

How to diagnose Storage errors

Storage errors are dominated by permissions and locality. S3 access denials can come from an IAM policy, a bucket policy, a Block Public Access setting, an ACL or a KMS key policy: five independent layers, all of which must allow the call. Block storage errors are usually about availability zones: a volume can only attach to an instance in the same AZ.

If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.

  1. For S3 denials, check all five layers: IAM policy, bucket policy, Block Public Access, object ACL and the KMS key policy if the object is encrypted with a customer-managed key.
  2. Confirm the region and the exact bucket name. A bucket in another region returns a redirect or a permanent error that reads like a permission problem.
  3. For signed URLs, check the expiry and that the clock on the signing machine is correct. A skewed clock produces URLs that are already expired.
  4. For NFS stale file handles, remount rather than retrying; the file the handle referred to no longer exists on the server.
  5. For volume attachment failures, verify the availability zone matches and that the volume is in the available state, not still attached elsewhere.

Tools worth reaching for

  • aws s3api get-bucket-policy
  • IAM Policy Simulator
  • mount -v / showmount -e
  • df -h / du -sh
  • aws ec2 describe-volumes

Authoritative references

Primary documentation for this error, worth reading before applying any fix in production.

man7.org

Related Storage errors

See all 13 Storage errors →

Browse other categories

Something missing or wrong?

This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.