(Adding in MySQL Section)
|
(→Installation w/MySQL)
|
Line 5: | |||
= Installation w/MySQL = | = Installation w/MySQL = | ||
+ | The instructions present in the [http://docs.urbancode.com/anthill3-help-3.8/html/Installation.html#install-mysql documentation for MySQL database] can be used for installing, but listed below are the commands that need to be performed on the database side: | ||
+ | <pre>mysql> create database [database-name]; | ||
+ | Query OK, 1 row affected (0.00 sec) | ||
+ | . | ||
+ | . | ||
+ | . | ||
+ | mysql> grant all on [database-name].* to '[dbuser]'@'%' identified by '[dbpass]' | ||
+ | with grant option; | ||
+ | Query OK, 0 rows affected (0.03 sec) | ||
+ | </pre> | ||
+ | This will grant all permissions for the specified user to connect to the specified database name. | ||
= Installation w/Oracle XE = | = Installation w/Oracle XE = | ||