次を検索して簡単に問題/不具合を検索: #<問題/不具合 ID>
例: #1832
次を検索して簡単にメンバーを検索: <ユーザー名>、<名> および <姓>。
例: smith を検索すると、結果に smith と adamsmith が返されます
Aqua Data Server (Public) / nhilam |
フォロー
122
|
Download MySQL 5.1+, GA (Generally Available) installer for Windows at http://dev.mysql.com/downloads/mysql/.
Launch the MySQL installer and select "Typical Install", clicking next until you are given the option to check the checkbox for "Configure MySQL Server Now".
Make sure the "Configure MySQL Server Now" is checked, and click next to get to the "MySQL Server Instance Configuration" dialog.
Check the "Standard" configuration and click Next.
Ensure that it is installing as a "Windows Service" and that "Launch the MySQL Server Automatically" is checked. Click Next.
Check "Modify Security Settings", and enter a root MySQL password and ensure that the checkbox allowing root to "connect from network" is checked.
Click "Execute" and then click "Finish".
Before connecting to MySQL you will need to GRANT access to your user and machine. Because the MySQL JDBC driver uses TCP/IP sockets instead of Unix Domain Sockets, the security manager in MySQL server will use the HOSTS table to determine whether or not the connection should be allowed. To grant your user access use this syntax: "GRANT ALL PRIVILEGES ON [dbname].* to ’[user]’@’[hostname]’ identified by ’[password]’" to generate and execute an SQL command.
mysql -u root -p <press enter and it will ask for mysql root password>
-mysql> GRANT ALL PRIVILEGES on *.* to `root`@'%' identified by '(type in the root password)' with grant option; <press enter>
-mysql> exit; <press enter>
NOTE: It is important that the MySQL configuration have its bind-address set to the IP address of the computer it is installed on, within the my.ini file. See this link http://dev.mysql.com/doc/refman/5.1/en/option-files.html for location of the configuration file and the order that MySQL reads the configuration information.
バージョン情報 プライバシー ポリシー サポート Version - 19.0.2-4 AquaFold, Inc Copyright © 2007-2017