Difference between revisions of "MySQL Database Setup"

From ASSS Wiki
Jump to: navigation, search
Line 1: Line 1:
 +
===Installing MySQL===
 
Detailed MySQL instructions can be found at http://dev.mysql.com/doc/mysql/en/Installing.html.
 
Detailed MySQL instructions can be found at http://dev.mysql.com/doc/mysql/en/Installing.html.
Gremlinar
+
<br/>-Unknown
  
 +
===Getting ASSS and MySQL talking===
 
#In modules.conf, enable database:mysql and database:aliasdb.
 
#In modules.conf, enable database:mysql and database:aliasdb.
 
#After getting MySQL installed (and functioning), install the MySQL administrator (Windows, Linux, and OS X are supported) which is also found on the MySQL download page.
 
#After getting MySQL installed (and functioning), install the MySQL administrator (Windows, Linux, and OS X are supported) which is also found on the MySQL download page.
#Create a user, a password for this user, and a database in MySQL. The default is asss for the user name and database name, and your choice on the password.
+
#Create a user, a password for this user, and a database in MySQL. The default is "asss" for the user name and database name, and your choice on the password.
 
#Assign permissions between the user and the database.
 
#Assign permissions between the user and the database.
 
#In global.conf in the [mysql] section change the user name, password, and the table name to what you have chosen above. The hostname should be localhost if MySQL is running on the same computer the server is. Otherwise you can use an IP address.
 
#In global.conf in the [mysql] section change the user name, password, and the table name to what you have chosen above. The hostname should be localhost if MySQL is running on the same computer the server is. Otherwise you can use an IP address.
  
A sample would look like:<br>
+
A sample would look like:<br/>
[mysql]<br>
+
[mysql]<br/>
hostname=localhost<br>
+
hostname=localhost<br/>
user=asss<br>
+
user=asss<br/>
password=whatever you selected for a password<br>
+
password=whatever you selected for a password<br/>
database=asss
+
database=asss<br/>
  
 
+
Good Luck! --[[User:WetChicken|WetChicken]] 15:06, Sep 12, 2005 (EDT)
good luck! WetChicken Sept 12 2005
 
  
 
[[Category:ASSS]]
 
[[Category:ASSS]]
 
[[Category:Guides]]
 
[[Category:Guides]]

Revision as of 15:06, 12 September 2005

Installing MySQL

Detailed MySQL instructions can be found at http://dev.mysql.com/doc/mysql/en/Installing.html.
-Unknown

Getting ASSS and MySQL talking

  1. In modules.conf, enable database:mysql and database:aliasdb.
  2. After getting MySQL installed (and functioning), install the MySQL administrator (Windows, Linux, and OS X are supported) which is also found on the MySQL download page.
  3. Create a user, a password for this user, and a database in MySQL. The default is "asss" for the user name and database name, and your choice on the password.
  4. Assign permissions between the user and the database.
  5. In global.conf in the [mysql] section change the user name, password, and the table name to what you have chosen above. The hostname should be localhost if MySQL is running on the same computer the server is. Otherwise you can use an IP address.

A sample would look like:
[mysql]
hostname=localhost
user=asss
password=whatever you selected for a password
database=asss

Good Luck! --WetChicken 15:06, Sep 12, 2005 (EDT)