What's My License Commands
Overview
This page provides a quick reference for all license commands available in the RC Licensing System. Each license type has its own command prefix for management and updates.
License Command Reference
Command Structure
All license commands follow this pattern:
PREFIX [options]
Common Options
| Option | Description |
|---|---|
| No option | Display license status and update |
| -status | Show current license status |
| -version | Display version information |
| -help | Show help information |
| -force | Force update/reinstall |
All License Commands
cPanel License
Command Prefix:
ZCP
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) cPanel; ZCP
Update License:
ZCP
Check Status:
ZCP -status
View Help:
ZCP -help
LiteSpeed License
Command Prefix:
ZLSWS
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) liteSpeed; ZLSWS
Update License:
ZLSWS
Check Status:
ZLSWS -status
View Help:
ZLSWS -help
CloudLinux License
Command Prefix:
ZCLN
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) CloudLinux; ZCLN
Update License:
ZCLN
Check Status:
ZCLN -status
View Help:
ZCLN -help
Imunify360 License
Command Prefix:
RcLicenseImunify360
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) Imunify360; RcLicenseImunify360
Update License:
RcLicenseImunify360
Check Status:
RcLicenseImunify360 -status
View Help:
RcLicenseImunify360 -help
WordPress License
Command Prefix:
ZWP
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) wp2; ZWP
Update License:
ZWP
Check Status:
ZWP -status
View Help:
ZWP -help
Softaculous License
Command Prefix:
ZSoftaculous
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) Softaculous; ZSoftaculous
Update License:
ZSoftaculous
Check Status:
ZSoftaculous -status
View Help:
ZSoftaculous -help
Sitepad License
Command Prefix:
ZSitepad
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) Sitepad; ZSitepad
Update License:
ZSitepad
Check Status:
ZSitepad -status
View Help:
ZSitepad -help
Plesk License
Command Prefix:
ZPlesk
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) Plesk; ZPlesk
Update License:
ZPlesk
Check Status:
ZPlesk -status
View Help:
ZPlesk -help
Virtualizor License
Command Prefix:
ZVirtualizor
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) Virtualizor; ZVirtualizor
Update License:
ZVirtualizor
Check Status:
ZVirtualizor -status
View Help:
ZVirtualizor -help
JetBackup License
Command Prefix:
ZJetBackup
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) JetBackup; ZJetBackup
Update License:
ZJetBackup
Check Status:
ZJetBackup -status
View Help:
ZJetBackup -help
WHM Reseller License
Command Prefix:
ZWHMReseller
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) WHMReseller; ZWHMReseller
Update License:
ZWHMReseller
Check Status:
ZWHMReseller -status
View Help:
ZWHMReseller -help
WHM Sonic License
Command Prefix:
ZWHMSonic
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) WHMSonic; ZWHMSonic
Update License:
ZWHMSonic
Check Status:
ZWHMSonic -status
View Help:
ZWHMSonic -help
DirectAdmin License
Command Prefix:
ZDA
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) DirectAdmin; ZDA
Update License:
ZDA
Check Status:
ZDA -status
View Help:
ZDA -help
DirectAdmin Reseller License
Command Prefix:
ZDAReseller
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) DAReseller; ZDAReseller
Update License:
ZDAReseller
Check Status:
ZDAReseller -status
View Help:
ZDAReseller -help
OSM License
Command Prefix:
ZOSM
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) OSM; ZOSM
Update License:
ZOSM
Check Status:
ZOSM -status
View Help:
ZOSM -help
CXS License
Command Prefix:
ZCXS
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) CXS; ZCXS
Update License:
ZCXS
Check Status:
ZCXS -status
View Help:
ZCXS -help
CPGuard License
Command Prefix:
ZCPGuard
Installation:
bash <( curl https://api.licensetube.com/pre.sh ) CPGuard; ZCPGuard
Update License:
ZCPGuard
Check Status:
ZCPGuard -status
View Help:
ZCPGuard -help
Special Commands
cPanel FleetSSL
Activate FleetSSL with your cPanel license:
ZCP -fleetssl
cPanel License Verification
Verify your cPanel license at verify.cpanel.net:
touch /etc/.verifylicense ; ZCP
Batch Operations
Update All Licenses
Create a script to update all licenses:
#!/bin/bash
# Update all licenses
ZCPZLSWSZCLNRcLicenseImunify360
echo "All licenses updated!"
Check All License Status
Script to check all license statuses:
#!/bin/bash
echo "=== License Status Report ==="
echo ""
echo "cPanel:"
ZCP -status
echo ""
echo "LiteSpeed:"
ZLSWS -status
echo ""
echo "CloudLinux:"
ZCLN -status
Troubleshooting Commands
Verify Installation
Check if license is properly installed:
which ZCPls -la /usr/local/bin/ | grep RcLicense
Check License Logs
View license operation logs:
tail -f /var/log/license.log
tail -f /var/log/messages | grep RcLicense
Reinstall License
If license command is missing, reinstall it:
bash <( curl https://api.licensetube.com/pre.sh ) cPanel; ZCP
Command Output Examples
Successful License Status
License Status Report
=====================
Status: Active
Type: cPanel
Expires: 2025-12-31
Server IP: 192.168.1.1
Hostname: server.example.com
Last Updated: 2025-01-18 12:00:00
Next Check: 2025-01-19 12:00:00
Expired License
License Status Report
=====================
Status: EXPIRED
Type: cPanel
Expired: 2024-12-31
Server IP: 192.168.1.1
Hostname: server.example.com
WARNING: Your license has expired!
Please renew your license to continue using this service.
Scheduling Automatic Updates
Cron Job for Daily Updates
Add to crontab to update licenses daily:
0 2 * * * ZCP >> /var/log/license-update.log 2>&1
Cron Job for Weekly Status Check
0 3 * * 0 ZCP -status >> /var/log/license-status.log 2>&1
Quick Reference Table
| License Type | Command | Installation Script |
|---|---|---|
| cPanel License | ZCP |
cPanel |
| LiteSpeed License | ZLSWS |
liteSpeed |
| CloudLinux License | ZCLN |
CloudLinux |
| Imunify360 License | RcLicenseImunify360 |
Imunify360 |
| WordPress License | ZWP |
wp2 |
| Softaculous License | ZSoftaculous |
Softaculous |
| Sitepad License | ZSitepad |
Sitepad |
| Plesk License | ZPlesk |
Plesk |
| Virtualizor License | ZVirtualizor |
Virtualizor |
| JetBackup License | ZJetBackup |
JetBackup |
| WHM Reseller License | ZWHMReseller |
WHMReseller |
| WHM Sonic License | ZWHMSonic |
WHMSonic |
| DirectAdmin License | ZDA |
DirectAdmin |
| DirectAdmin Reseller License | ZDAReseller |
DAReseller |
| OSM License | ZOSM |
OSM |
| CXS License | ZCXS |
CXS |
| CPGuard License | ZCPGuard |
CPGuard |