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 /
lve /
dbgovernor /
modules /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-09-04 11:33
__init__.py
381
B
-rw-r--r--
2026-08-06 17:01
base.py
65.16
KB
-rw-r--r--
2026-08-06 17:01
cpanel.py
23.74
KB
-rw-r--r--
2026-08-06 17:01
da.py
17.31
KB
-rw-r--r--
2026-08-06 17:01
ispmanager.py
3.19
KB
-rw-r--r--
2026-08-06 17:01
iworx.py
1.04
KB
-rw-r--r--
2026-08-06 17:01
plesk.py
1.24
KB
-rw-r--r--
2026-08-06 17:01
storage.py
6.69
KB
-rw-r--r--
2026-08-06 17:01
Save
Rename
#coding:utf-8 # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2019 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT # """ This module contains class for managing governor on Plesk server """ import os from utilities import read_file from .base import InstallManager class PleskManager(InstallManager): """ Implementation for plesk panel """ DBPASS_PATH = "/etc/psa/.psa.shadow" def get_mysql_user(self): """ Retrieve MySQL user name and password and save it into self attributes """ if os.path.exists(self.DBPASS_PATH): self.MYSQLUSER = "admin" self.MYSQLPASSWORD = read_file(self.DBPASS_PATH) def update_user_map_file(self): """ Update user mapping file for Plesk """ self._script("dbgovernor_map_plesk.py") def _detect_version_if_auto(self): """ Plesk in CL8: in auto mode governor chooses mysql8 as default to install. We change this behavior because of plesk in CL8 uses mariadb103 as default """ if self.cl_version == 8: return 'mariadb103' else: return super()._detect_version_if_auto()