mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
Initialize MySQL
This commit is contained in:
@ -306,12 +306,38 @@ class ErgoController(BaseServerController, DirectoryBasedController):
|
|||||||
def startMysql(self) -> str:
|
def startMysql(self) -> str:
|
||||||
"""Starts a new MySQL server listening on a UNIX socket, returns the socket
|
"""Starts a new MySQL server listening on a UNIX socket, returns the socket
|
||||||
path"""
|
path"""
|
||||||
|
# Function based on pifpaf's MySQL driver:
|
||||||
|
# https://github.com/jd/pifpaf/blob/3.1.5/pifpaf/drivers/mysql.py
|
||||||
assert self.directory
|
assert self.directory
|
||||||
mysql_dir = os.path.join(self.directory, "mysql")
|
mysql_dir = os.path.join(self.directory, "mysql")
|
||||||
socket_path = os.path.join(mysql_dir, "mysql.socket")
|
socket_path = os.path.join(mysql_dir, "mysql.socket")
|
||||||
os.mkdir(mysql_dir)
|
os.mkdir(mysql_dir)
|
||||||
|
|
||||||
print("Starting MySQL...")
|
print("Starting MySQL...")
|
||||||
|
try:
|
||||||
|
subprocess.check_call(
|
||||||
|
[
|
||||||
|
"mysqld",
|
||||||
|
"--no-defaults",
|
||||||
|
"--tmpdir=" + mysql_dir,
|
||||||
|
"--initialize-insecure",
|
||||||
|
"--datadir=" + mysql_dir,
|
||||||
|
],
|
||||||
|
stdout=subprocess.DEVNULL,
|
||||||
|
stderr=subprocess.DEVNULL,
|
||||||
|
)
|
||||||
|
except subprocess.CalledProcessError:
|
||||||
|
# Initialize the old way
|
||||||
|
subprocess.check_call(
|
||||||
|
[
|
||||||
|
"mysql_install_db",
|
||||||
|
"--no-defaults",
|
||||||
|
"--tmpdir=" + mysql_dir,
|
||||||
|
"--datadir=" + mysql_dir,
|
||||||
|
],
|
||||||
|
stdout=subprocess.DEVNULL,
|
||||||
|
stderr=subprocess.DEVNULL,
|
||||||
|
)
|
||||||
self.mysql_proc = subprocess.Popen(
|
self.mysql_proc = subprocess.Popen(
|
||||||
[
|
[
|
||||||
"mysqld",
|
"mysqld",
|
||||||
|
Reference in New Issue
Block a user