| Server IP : 54.37.205.81 / Your IP : 216.73.216.76 Web Server : nginx/1.22.1 System : Linux vps-249481fa 6.1.0-50-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.176-1 (2026-07-02) x86_64 User : debian ( 1000) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/self/root/etc/mysql/ |
Upload File : |
#!/bin/bash # # This script is executed by both SysV init /etc/init.d/mariadb and # systemd mariadb.service on every (re)start. # # Changes to this file will be preserved when updating the Debian package. # source /usr/share/mysql/debian-start.inc.sh # Read default/mysql first and then default/mariadb just like the init.d file does if [ -f /etc/default/mysql ]; then . /etc/default/mysql fi if [ -f /etc/default/mariadb ]; then . /etc/default/mariadb fi # Variable used in check_root_accounts() # shellcheck disable=SC2034 MYSQL="/usr/bin/mysql --defaults-extra-file=/etc/mysql/debian.cnf" # Don't run full mysql_upgrade on every server restart, use --version-check to do it only once # Variable used in upgrade_system_tables_if_necessary() # shellcheck disable=SC2034 MYUPGRADE="/usr/bin/mysql_upgrade --defaults-extra-file=/etc/mysql/debian.cnf --version-check --silent" # The following commands should be run when the server is up but in background # where they do not block the server start and in one shell instance so that # they run sequentially. They are supposed not to echo anything to stdout. # (There may be no output to stdout inside the background process!) # Need to ignore SIGHUP, as otherwise a SIGHUP can sometimes abort the upgrade # process in the middle. trap "" SIGHUP ( upgrade_system_tables_if_necessary; check_root_accounts; ) >&2 & exit 0