NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
dtarin
Sep 14, 2023Luminary
Remove readycloud users
I have a few ReadyCloud users remaining on my 516 system.
The readycloud service has now shut down so how do I remove the unused users?
16 Replies
- NiveditaP3NETGEAR Expert
Hello dtarin
And welcome to the NETGEAR Community! ๐
You can delete the ReadyCloud users from the Admin UI of ReadyNAS.Steps :
1.Browse the IP address
2. Log in to your ReadyNAS.
3. Select Accounts > Cloud Users.
The list of users displays.
4. From the list of users, select the user account.
5. Click the Delete button in the pop-up menu.
6. Confirm the deletion.
The user is deleted.Have a lovely day,
Nivedita Pa
Netgear Team
NiveditaP3 wrote:
You can delete the ReadyCloud users from the Admin UI of ReadyNAS.No, that doesn't work. If you try your process, you will find that on step 5 you get this popup:
Of course you can't use the ReadyCloud link because the service has been taken down. Clicking "ok" of course just dismisses the pop-up.
Note this NAS has the ReadyCloud service set to off.
- LeventhApprentice
Since ReadyCloud service was shutdown we can't delete cloud user via GUI because it's trying to forward ReadyCloud account page which is no longer available.
Is there any other solution with leaving alone ReadyNAS users?
Leventh wrote:
Since ReadyCloud service was shutdown we can't delete cloud user via GUI because it's trying to forward ReadyCloud account page which is no longer available.
Is there any other solution with leaving alone ReadyNAS users?The mods said there wasn't. I took a brief look and didn't see one either.
The only way I know of is to do a factory default (which would then require setting up the NAS again and restoring all the files from backup).
dtarin wrote:
The readycloud service has now shut down so how do I remove the unused users?
Unfortunately I don't think you can.
AnishaA - any chance Netgear could provide some instructions (likely using ssh). It'd also be good to get an OS update that removes the ReadyCloud service, since it does take up resources in the NAS.
- dtarinLuminary
Agreed, it would be useful to know how to remove it via terminal if we can't do it via Frontview anymore.
- AnishaANETGEAR Moderator
Helo dtarin ,
It is not possible to remove the user from the login as the ReadyCLoud services have been terminated.
We can no longer access the ReadyCLoud link. So it is not possible to remove the user in any of the methods. Even in SSH.
Have a lovely day,
Anisha A
Netgear Team - BMac2021Tutor
Is there anyway to remove cloud users now off the readyNAS?
Lengthy discussion here, still open: Remove ReadyCloud Users
Challenging a moderator to merge your question there.
BMac2021 wrote:
Is there anyway to remove cloud users now off the readyNAS?
Installing 6.10.10 might do it. Though it will also remove the ability to install apps from the web ui - if it does that, you should be able do downgrade back to 6.10.9 (which wouldn't add back any accounts).
- BogusTutor
Itโs 2025 now, is there finally a solution how to remove the cloud users completely with ssh?
And where do these dns requests come from: peernetwork.netgear.com ?
Iโd love to clean my old rn204 up, itโs serves just well as a file server.
thanks, erwin
- dottrixInitiate
I think I figured out how to remove the ReadyCloud users from a Neatgear ReadyNAS on version 6.10.10.
I was upgrading from an old ReadyNAS 314 (2TBx4) to an newer-old ReadyNAS Pro 6 (3TBx6)
I did a configuration backup from the RN314 and restored to the Pro6, then backed up the configuration on the Pro 6, and inspected the differences.Both NAS systems are on firmware v6.10.10. I expect that the commands should be functional in 6.10.x. Importing the configuration to the Pro 6 did not import the ReadyCloud users or permissions. That helped with the comparison. After migrating all of my data to the Pro 6, I then started poking around the RN314 to see if I could figure out how to remove the ReadyCloud users from the system.
I do believe that this is a superficial cleanup that doesn't really NEED to be done, but, if you're like me, you just want it to be clean and simple. Here is how I did that.
*
Disclaimer: Make sure you have a good backup of your configuration and your data before doing this process. [System] > Settings > Configuration Backup >Download - Everything > [Download Configuration Archive].
While I am confident that these commands should work, you assume the full responsibility for any errors or issues that may occur. Use at your own risk.*
First, confirm that none of your internal users have an email address as their username. [Accounts] > Users > NAME should not contain any '@' signs.
If you are using email addresses AS usernames, then you may have to manually run the commands,adjusting them to search only for the list of ReadyCloud users you want to delete.*
Steps with descriptions. (batch of commands listed at the bottom)
- Enable SSH on ReadyNAS [System] > Settings > SSH > Checkmark Enable SSH & Enable password authentication > [Apply]
- Use Putty/etc. to SSH into the Name or IP of the ReadyNAS
- Logon as user : root
- Password should be the same as the admin account. (Or login as admin, then 'su' into root, with the same password.)
- This command will remove the ReadyCloud users from being listed in the [Shares] section and in the Folder Permissions.
- mv /opt/readycloud/etc/registration.conf /opt/readycloud/etc/registration_tmp.conf
- Remove the Invalid user line from the shares. Note: May not be necessary, but it does clean it up.
- sed -i.bak '/^[[:space:]]*invalid user/d' /etc/frontview/samba/Shares.conf
- Set every ReadyCloud user to #-comment.
- sed -i.bak '/^#/!s/^/#/' /etc/frontview/samba/usermap.conf
- - OR - Remove any line that contains an '@' since it is a ReadyCloud Username
- sed -i.bak '/[@]/d' /etc/frontview/samba/usermap.conf
- Remove the Invalid user line from the samba share configs. Note: May not be necessary, but it does clean it up.
- find /data/._share -type f -name samba.conf -exec sed -i.bak '/^[[:space:]]*invalid users/d' {} +
- Removes the ReadyCloud users with the user name as an email address.
- sed -i.bak '/@/d' /etc/samba/smbpasswd
- Removes ReadyCloud users from the passwd file. - Remove all lines with email @ before the first :
- sed -i.bak '/^[^:]*@[^:]*:/d' /etc/passwd
- Removes ReadyCloud users from the shadow file. - Remove all lines with email @ before the first :
- sed -i.bak '/^[^:]*@[^:]*:/d' /etc/shadow
- Finally Reboot the ReadyNAS, from SSH or from the Admin page.
- ssh command: reboot
After the steps are complete, and you confirm everything works, make sure to turn SSH back off in the Admin settings.
If the ReadyCloud user was an owner of a file or folder, then you may need to take ownership of those files manually in file explorer, or by resetting the permissions in the share settings.
___
Note: For each file, you can run 'cat [filename]' to see what it contains, then run the sed command without the '-i.bak' to see what it will do.
Example:- cat /etc/passwd
- sed '/^[^:]*@[^:]*:/d' /etc/passwd
Make sure that the only users missing from the 'sed' list are the ReadyCloud users.
___
Batch of Commands:
SSH into ReadyNAS and login as root.
___
mv /opt/readycloud/etc/registration.conf /opt/readycloud/etc/registration_tmp.conf
sed -i.bak '/^[[:space:]]*invalid user/d' /etc/frontview/samba/Shares.conf
sed -i.bak '/^#/!s/^/#/' /etc/frontview/samba/usermap.conf
sed -i.bak2 '/[@]/d' /etc/frontview/samba/usermap.conf
find /data/._share -type f -name samba.conf -exec sed -i.bak '/^[[:space:]]*invalid users/d' {} +
sed -i.bak '/@/d' /etc/samba/smbpasswd
sed -i.bak '/^[^:]*@[^:]*:/d' /etc/passwd
sed -i.bak '/^[^:]*@[^:]*:/d' /etc/shadowreboot
___I hope someone finds this helpful.
I still love Netgear ReadyNAS, and I'm going to use it till the wheels fall off.
-dottrixdottrix wrote:
Batch of Commands:
SSH into ReadyNAS and login as root.
___
mv /opt/readycloud/etc/registration.conf /opt/readycloud/etc/registration_tmp.conf
sed -i.bak '/^[[:space:]]*invalid user/d' /etc/frontview/samba/Shares.conf
sed -i.bak '/^#/!s/^/#/' /etc/frontview/samba/usermap.conf
sed -i.bak2 '/[@]/d' /etc/frontview/samba/usermap.conf
find /data/._share -type f -name samba.conf -exec sed -i.bak '/^[[:space:]]*invalid users/d' {} +
sed -i.bak '/@/d' /etc/samba/smbpasswd
sed -i.bak '/^[^:]*@[^:]*:/d' /etc/passwd
sed -i.bak '/^[^:]*@[^:]*:/d' /etc/shadow
rebootIt looks useful - when I have a chance I'll try it on one of my test NAS.
- Enable SSH on ReadyNAS [System] > Settings > SSH > Checkmark Enable SSH & Enable password authentication > [Apply]
Related Content
NETGEAR Academy

Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!