Easily find issues by searching: #<Issue ID>
Example: #1832
Easily find members by searching in: <username>, <first name> and <last name>.
Example: Search smith, will return results smith and adamsmith
Aqua Data Server (Public) / nhilam |
Follow
122
|
sudo apt-get install mysql-server <press enter>
(enter a password for mysql root) <press enter>
Download the MySQL 5.1+, GA (Generally Available) installer for your OS at http://dev.mysql.com/downloads/mysql/ and follow the installation instructions at http://dev.mysql.com/doc/refman/5.1/en/installing.html
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 <enter the mysql root password and press enter>
-mysql> GRANT ALL PRIVILEGES on *.* to `root`@'%' identified by '(type in the root password)' with grant option;<press enter>
-mysql> exit;<press enter>
sudo /etc/init.d/mysql stop
You need to tell MySQL which IP address to bind to (to listen on) if the database is on a different computer than the Aqua Data Server installation. This should be the IP address of the machine that MySQL is installed on. This IP address is also specified in the aquadataserver.properties file, as described in step 3 of "Installing Aqua Data Server". See this link http://dev.mysql.com/doc/refman/5.1/en/option-files.html for information where configuration files are located and the order in which MySQL reads the configuration information.
sudo vi /etc/mysql/my.cnf
an example for this is:
bind-address=10.168.5.210
sudo /etc/init.d/mysql start
About AquaClusters Privacy Policy Support Version - 19.0.2-4 AquaFold, Inc Copyright © 2007-2017