Skip to content
This repository has been archived by the owner on Jan 8, 2020. It is now read-only.

Commit

Permalink
fix mariadb and mysql install script
Browse files Browse the repository at this point in the history
  • Loading branch information
maicong committed Dec 12, 2017
1 parent 873358d commit abb6fb7
Show file tree
Hide file tree
Showing 2 changed files with 133 additions and 128 deletions.
6 changes: 3 additions & 3 deletions etc/phpMyAdmin/config.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
// full server array, just define values you need to change.
$i++;
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] = '3306'; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = '/home/userdata/mysqld.sock'; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'socket'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['port'] = '3306'; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = 'mysql.sock'; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'socket'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['extension'] = 'mysqli'; // The php MySQL extension to use ('mysql' or 'mysqli')
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
// (requires PHP >= 4.3.0)
Expand Down
Loading

0 comments on commit abb6fb7

Please sign in to comment.