Multiple connections to a server or shared resource by same user, using more than one username, are not allowed. Disconnect all previous connections to the server or shared resource and try again
This is generally a windows error which comes across when you try to access some share with multiple username/password on the same machine. But it is related to Linux as it also happens when you try to access the same samba share with different login credentials using the same windows machine.
Solution:
Windows by default stores a cache of all the network drives accessed so that next time when you try to access the same path it will take the credentials from the cache without prompting for username/password again.
In such cases you need to clear the cache. How do we do that?
Go to your windows machine and open the cmd prompt
C:\Users\Deepak>net use
New connections will be remembered.
Status Local Remote Network
-------------------------------------------------------------------------------
OK \\192.168.0.100\IPC$ Microsoft Windows Network
The command completed successfully.
As you see above a single cache entry is there in my windows machine for //192.168.0.100, so next time if I try to access this share with some other username/password, I would get the same error.
So we will have to clear this cache
C:\Users\Deepak>net use /delete \\192.168.0.100\IPC$
\\192.168.0.100\IPC$ was deleted successfully.
C:\Users\Deepak>net use
New connections will be remembered.
There are no entries in the list.
Now the cache list is empty and you can try to re-connect the share with new credential
Follow the below links for more tutorials
Tutorial for Monitoring Tools SAR and KSAR with examples in Linux
How to secure Apache web server in Linux using password (.htaccess)
How to register Red Hat Linux with RHN (Red Hat Network )
Red hat Enterprise Linux 5.5 Installation Guide (Screenshots)
15 tips to enhance security of your Linux machine
Why is Linux more secure than windows and any other OS
What is the difference between "su" and "su -" in Linux?
What is swappiness and how do we change its value?
How to log iptables messages in different log file
Basic iptables tutorial in Linux I
Basic iptables tutorial in Linux II
How to auto start service after reboot in Linux
What is virtual memory, paging and swap space?
No comments: