phpmyadmin基本構成

1194 ワード

インストールパッケージのダウンロード
phpmyadminダウンロードアドレス
nginxの構成
server {
  listen 8230;
  server_name localhost;
  root /the/home/of/phpMyAdmin;
  location ~ \.php$ {
    fastcgi_pass     "       ";  
    fastcgi_index index.php;
    include fastcgi_params;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  }
}

phpmyadminの構成
$i++;
$cfg['Servers'][$i]['auth_type'] = 'config';
//mysql host and port
$cfg['Servers'][$i]['host'] = '10.92.61.119';
$cfg['Servers'][$i]['port'] = '8866';
//mysql user and password
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '123456';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
/* Select mysql if your server does not have mysqli */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Servers'][$i]['nopassword'] = true;

Webにログイン
http://host:8230