spaghettimaster / mysql

MySQL - Relational Database Management System

Home Page:https://www.turnkeylinux.org/mysql

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MySQL - Relational Database Management System

MySQL is a relational database management system (RDBMS) which has more than 11 million installations, and is owned by Oracle. MySQL is a fast, stable, robust, easy to use, and true multi-user, multi-threaded SQL database server.

This appliance includes all the standard features in TurnKey Core, and on top of that:

  • MariaDB (drop-in MySQL replacement)

  • Web Control Panel

  • Adminer administration frontend for MySQL (listening on port 12322 - uses SSL).

  • MySQL webmin module.

  • MySQL is configured to listen on port 3306 TCP on all interfaces by default.

  • For convenience MySQL is configured to accept connections from all hosts by default. In a production environment it is recommended to limit incoming connections to specific hosts:

    UPDATE `mysql`.`user` SET `Host` = 'hostname'
    WHERE CONVERT( `user`.`Host` USING utf8 ) = '%' AND
    CONVERT( `user`.`User` USING utf8 ) = 'adminer' LIMIT 1 ;
    

Note: MySQL can be further tweaked to optimize performance.

Credentials (passwords set at first boot)

  • Webmin, SSH, MySQL (local): username root
  • MySQL (remote), Adminer: username adminer

About

MySQL - Relational Database Management System

https://www.turnkeylinux.org/mysql


Languages

Language:PHP 75.0%Language:Shell 15.5%Language:Makefile 9.5%