X7ROOT File Manager
Current Path:
/usr/share/mysql
usr
/
share
/
mysql
/
ðŸ“
..
📄
binary-configure
(1.13 KB)
ðŸ“
bulgarian
ðŸ“
charsets
ðŸ“
chinese
ðŸ“
czech
ðŸ“
danish
ðŸ“
dutch
ðŸ“
english
📄
errmsg-utf8.txt
(699.67 KB)
ðŸ“
estonian
📄
fill_help_tables.sql
(2.06 MB)
ðŸ“
french
ðŸ“
german
ðŸ“
greek
ðŸ“
hindi
ðŸ“
hungarian
ðŸ“
italian
ðŸ“
japanese
ðŸ“
korean
📄
magic
(1.44 KB)
📄
maria_add_gis_sp.sql
(1.67 KB)
📄
maria_add_gis_sp_bootstrap.sql
(1.64 KB)
📄
mysql-log-rotate
(894 B)
📄
mysql.server
(12.38 KB)
📄
mysql_performance_tables.sql
(1.91 KB)
📄
mysql_sys_schema.sql
(605.2 KB)
📄
mysql_system_tables.sql
(29.86 KB)
📄
mysql_system_tables_data.sql
(3.25 KB)
📄
mysql_test_data_timezone.sql
(10.17 KB)
📄
mysql_test_db.sql
(1.64 KB)
📄
mysqld_multi.server
(1.53 KB)
ðŸ“
norwegian
ðŸ“
norwegian-ny
ðŸ“
policy
ðŸ“
polish
ðŸ“
portuguese
ðŸ“
romanian
ðŸ“
russian
ðŸ“
serbian
ðŸ“
slovak
ðŸ“
spanish
ðŸ“
swedish
ðŸ“
systemd
ðŸ“
ukrainian
📄
wsrep.cnf
(3.39 KB)
📄
wsrep_notify
(4.86 KB)
Editing: binary-configure
#!/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
Upload File
Create Folder