Knowledgebase

How to reset all LVE users limits to default

To reset all LVE (Lightweight Virtual Environment) users' limits to their default values on a CloudLinux server, you can use the lvectl command in conjunction with a script. Here's a step-by-step guide:

  1. Backup Data:

    • Before making any significant changes, it's crucial to back up your server's data, including user configurations and limits.
  2. Create a Script:

    • Use a text editor to create a script. For example, you can name it reset_lve_limits.sh.
    bash

 

  • #!/bin/bash for user in $(lvectl list | awk '{print $1}'); do lvectl set ${user} -p 0 done
    • This script will loop through all LVE users and reset their limits to the default values.
  • Save and Grant Permissions:

    • Save the script and grant it execution permissions:
    bash
  • chmod +x reset_lve_limits.sh
  • Execute the Script:

    • Run the script with superuser privileges:
    bash

 

  1. sudo ./reset_lve_limits.sh
    • This will execute the script and reset the limits for all LVE users.

Please note:

  • This script assumes that you have lvectl installed and that you have the necessary permissions to modify LVE limits.
  • Be cautious when running scripts that make changes to system configurations. Ensure you have backups in place and test in a non-production environment first if possible.

Always consult with CloudLinux's official documentation or support resources for the most accurate and up-to-date information on managing LVE limits on your specific server.

 
  • 0 Users Found This Useful
Was this answer helpful?