NT_STATUS_ACCESS_DENIED and mount error(13): Permission denied

Summary

I was trying to use smbclient to display and access Windows 10 hidden shared folder from RHEL6.3, smbclient command encountered tree connect failed: NT_STATUS_ACCESS_DENIED error, when mount through cifs, encountered mount error(13): Permission denied error. Finally resolved this issue through changing the Windows 10 regedit table.

Problem

smbclient display

When smbclient display, no issue,

[root@node1 ~]# smbclient -L //192.168.232.1 -U xionghuilin
Enter xionghuilin's password:
session request to 192.168.232.1 failed (Called name not present)
Domain=[LENOVO-XHL-PC] OS=[Windows 10 Pro 14393] Server=[Windows 10 Pro 6.3]

    Sharename       Type      Comment
    ---------       ----      -------
    ADMIN$          Disk      Remote Admin
    C$              Disk      Default share
    D$              Disk      Default share
    IPC$            IPC       Remote IPC
    print$          Disk      Printer Drivers
    Users           Disk
session request to 192.168.232.1 failed (Called name not present)
session request to 192 failed (Called name not present)
session request to *SMBSERVER failed (Called name not present)
NetBIOS over TCP disabled -- no workgroup available
[root@node1 ~]#

Error access by smbclient

[root@node1 ~]# smbclient //192.168.232.1/C$ -U xionghuilin
Enter xionghuilin's password:
Domain=[LENOVO-XHL-PC] OS=[Windows 10 Pro 14393] Server=[Windows 10 Pro 6.3]
tree connect failed: NT_STATUS_ACCESS_DENIED
[root@node1 ~]#

Error to mount by cifs

change password to 123456

C:\WINDOWS\system32>net user xionghuilin 123456
The command completed successfully.

mount error(13): Permission denied

[root@node1 ~]# mount -t cifs -o user=xionghuilin%123456 //192.168.232.1/ADMIN$ /smb
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

Solution

change the Windows 10 regedit table

Through google, resolved this issue by change the regedit table, refer to Link1 and Link2.
Create new regedit table entry,
Key goes in:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Curr entVersion\Policies\System
Key DWORD (32-bit): LocalAccountTokenFilterPolicy
Key Value : 1
As below screenshot shows,
change the regedit table

result

smbclient

[root@www ~]# smbclient //192.168.232.1/ADMIN$ -U xionghuilin%123456
Domain=[LENOVO-XHL-PC] OS=[Windows 10 Pro 14393] Server=[Windows 10 Pro 6.3]
smb: \> dir
cli_list_new: Error: unable to parse name from info level 260
  .                                  DA        0  Wed Jan 11 19:32:51 2017
  ..                                 DA        0  Wed Jan 11 19:32:51 2017
  addins                              D        0  Sat Jul 16 19:47:50 2016
cli_list_new: unable to parse name from info level 260

        49999 blocks of size 2097152. 5947 blocks available
[root@www ~]# mount -t cifs -o user=WORKGROUP/xionghuilin%123456,sec=ntlmv1 //192.168.232.1/ADMIN$ /smb --verbose
mount.cifs kernel mount options: ip=192.168.232.1,unc=\\192.168.232.1\ADMIN$,sec=ntlmv1,ver=1,user=xionghuilin,domain=WORKGROUP,pass=********
[root@www ~]# ls /smb
addins                            Globalization          PolicyDefinitions       SSW0E58417.SSW0F96302
appcompat                         Help                   Prefetch                symbols
AppPatch                          HelpPane.exe           PrintDialog             Synaptics.log
AppReadiness                      hh.exe                 Professional.xml        Synaptics.PD.log
assembly                          IME                    Provisioning            SYSINFO.TXT
bcastdvr                          ImmersiveControlPanel  regedit.exe             System
bfsvc.exe                         INF                    Registration            System32
BitLockerDiscoveryVolumeContents  InfusedApps            RemotePackages          SystemApps
Boot                              InputMethod            rescache                system.ini
bootstat.dat                      Installer              Resources               SystemResources
Branding                          L2Schemas              RtCamU64.exe            SysWOW64
CbsTemp                           LiveKernelReports      RtlExUpd.dll            TAPI
comsetup.log                      Logs                   RtsCM64.exe             Tasks
CoreSingleLanguage.xml            Media                  RtsCM64.xml             Temp
CSC                               MediaViewer            SchCache                ToastData
CSUP.TXT                          MEMORY.DMP             schemas                 tracing
Cursors                           MFGSTAT.zip            S.dirmngr               twain_32
debug                             mib.bin                security                twain_32.dll
diagerr.xml                       Microsoft.NET          ServiceProfiles         vpnplugins
diagnostics                       Migration              servicing               Vss
diagwrn.xml                       MiracastView           Setup                   Web
DigitalLocker                     ModemLogs              setupact.log            WIN8_1_64
Downloaded Installations          notepad.exe            setuperr.log            WindowsShell.Manifest
Downloaded Program Files          OCR                    ShellExperiences        WindowsUpdate.log
DPINST.LOG                        ODBC.INI               ShellNew                winhlp32.exe
DtcInstall.log                    Offline Web Pages      SKB                     win.ini
ELAMBKUP                          Panther                SoftwareDistribution    WinSxS
en-GB                             PCHEALTH               Speech                  WMSysPr9.prx
en-US                             pear.ini               Speech_OneCore          write.exe
explorer.exe                      Performance            splwow64.exe            zh-CN
Fonts                             PFRO.log               SQL9_KB960089_ENU
GameBarPresenceWriter             PLA                    SQLTools9_KB960089_ENU
[root@www ~]#

Reference

1,Unable to mount windows share in ubuntu
2, Issue Mounting CIFS Share


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
"Error: ER_ACCESS_DENIED_ERROR: Access denied for user 'root'@'localhost'" 这个错误通常是MySQL服务器中遇到的问题,表明尝试连接到数据库的用户(在这个例子中是 'root' 用户)在本地主机上被拒绝访问。这可能有以下几个原因: 1. **密码错误**:确认你输入的 root 用户密码是否正确。如果最近更改了密码,确保使用新密码。 2. **权限设置**:检查 MySQL 的配置文件(my.cnf 或者 my.ini),确认 root 用户是否允许从 localhost 登录。默认情况下,localhost 访问通常是允许的,但如果配置文件中有所限制,则可能需要调整。 3. **防火墙或安全组设置**:如果你在运行有防火墙或安全组规则的环境中,确保允许 MySQL 服务通过必要的端口(通常是 3306)从 localhost 访问。 4. **临时禁止远程登录**:有时,为了安全原因,管理员可能会临时禁用 root 用户的远程登录,这时需要在 MySQL 的安全配置中解除限制。 5. **账户锁定**:如果账户被锁定(如因连续登录失败),则需要通过 `mysqladmin` 命令解锁。 为了解决这个问题,你可以按照以下步骤尝试: 1. **登录尝试**:首先尝试使用正确的用户名和密码重新连接。 2. **检查配置**:查看 MySQL 的配置文件,确认允许 localhost 的访问。 3. **重启服务**:重启 MySQL 服务,看看是否可以解决问题。 4. **修改配置**:如果需要,编辑配置文件以允许 root 用户从 localhost 登录。 5. **解锁账户**:如有必要,解锁 root 账户。 如果以上步骤都不能解决问题,你可能需要联系数据库管理员或者查阅更详细的错误日志获取更多信息。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值