๐Ÿ›ก๏ธ How to Install and Uninstall Imunify360

Imunify360 is a powerful all-in-one security suite designed for Linux-based web servers. This guide will walk you through installing and uninstalling Imunify360 on your server.


โœ… How to Install Imunify360

1. ๐Ÿ“„ Obtain a License Key


2. ๐Ÿ” Connect to Your Server

Log in via SSH as the root user:

ssh root@your-server-ip

3. โฌ‡๏ธ Download and Run the Installer

Standard Installation with a License Key:

wget https://repo.imunify360.cloudlinux.com/defence360/i360deploy.sh -O i360deploy.sh
bash i360deploy.sh --key YOUR_KEY

Replace YOUR_KEY with your actual license key.

IP-Based License (No Key Needed):

bash i360deploy.sh

Install Beta Version (Optional):

bash i360deploy.sh --key YOUR_KEY --beta

4. ๐Ÿšช Post-Installation Access

Once installed, access Imunify360 through your hosting control panel:

  • WHM: Navigate to WHM ยป Plugins ยป Imunify360
  • Direct URL (if enabled): https://your-server-ip:PORT/

For full documentation:
๐Ÿ”— docs.imunify360.com


โŒ How to Uninstall Imunify360

1. ๐Ÿ›‘ Stop the Imunify360 Service

On CentOS 6 / CloudLinux 6:

service imunify360 stop

On CloudLinux 7 / 8 / 9 and AlmaLinux:

systemctl stop imunify360

2. ๐Ÿ“ฆ Download and Run the Uninstaller

If not already present:

wget https://repo.imunify360.cloudlinux.com/defence360/i360deploy.sh -O i360deploy.sh

Then uninstall:

bash i360deploy.sh --uninstall

3. ๐Ÿ”„ CloudLinux CageFS Cleanup (if applicable)

/usr/sbin/cagefsctl --force-update
/usr/sbin/cagefsctl --remount-all

4. ๐Ÿšซ Optional: Disable Automatic Updates

To disable auto-updates by removing cron jobs:

rm -f /etc/cron.daily/imunify360.cron
rm -f /etc/cron.daily/imunify360-firewall

๐Ÿ“š Additional Resources

Scroll to Top