2 选择Custom自定义安装
3点击【Change】更改MySQL安装目录
4 核实安装信息
5开始安装,一直【next】到Finish,单击【Finish】
6选择Detailed Configuration进行详细配置
7选择MySQL运行模式:Server Machine
8选择MySQL数据库默认存储方式:Non-Trans Only (MYISAM)
9设定MySQL最大连接数:一般设置为128 - 512之间的整数。
还有这些更改的地方:$cfg['Servers'][$i]['host'] = 'localhost'(通常用默认,也有例外)
$cfg['Servers'][$i]['auth_type'] = 'cookie'// Authentication method (config, http or cookie based)?
用cookie。因为是网络上使用所以这里选择cookie
$cfg['Servers'][$i]['user'] = 'root'// MySQL user
$cfg['Servers'][$i]['password'] = ''// MySQL password
The Essentials Package:不包含 embedded server and benchmark suite,有自动安装程序和配置向导,没有MySQL Documentation。
The Complete Package:
包含 embedded server and benchmark suite,有自动安装程序和配置向导,有MySQL Documentation。
The Noinstall Archive:
包含 embedded server and benchmark suite,没有自动安装程序和配置向导,有MySQL Documentation。
参考:
For MySQL 5.0, there are three installation packages to choose from when installing MySQL on Windows:
The Essentials Package: This package has a filename similar to mysql-essential-5.0.40-win32.msi and contains the minimum set of files needed to install MySQL on Windows, including the Configuration Wizard. This package does not include optional components such as the embedded server and benchmark suite.
The Complete Package: This package has a filename similar to mysql-5.0.40-win32.zip and contains all files needed for a complete Windows installation, including the Configuration Wizard. This package includes optional components such as the embedded server and benchmark suite.
The Noinstall Archive: This package has a filename similar to mysql-noinstall-5.0.40-win32.zip and contains all the files found in the Complete install package, with the exception of the Configuration Wizard. This package does not include an automated installer, and must be manually installed and configured.
The Essentials package is recommended for most users. It is provided as an .msi file for use with the Windows Installer. The Complete and Noinstall distributions are packaged as Zip archives. To use them, you must have a tool that can unpack .zip files.
Your choice of install package affects the installation process you must follow. If you choose to install either the Essentials or Complete install packages, see Section 2.4.8.2, “Installing MySQL with the Automated Installer”. If you choose to install MySQL from the Noinstall archive, see Section 2.4.8.5, “Installing MySQL from a Noinstall Zip Archive”.
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)