quick note on mysql setup

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1305828 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-03-27 12:58:08 +00:00
parent fa7ebb1e71
commit d9fa9a6a32
1 changed files with 10 additions and 0 deletions

View File

@ -90,3 +90,13 @@ Apache Archiva Database
database documentation for backup instructions.
~~TODO: link to wiki location that does others
* MySql setup
+------+
create database archiva character set utf8;
GRANT ALL PRIVILEGES ON archiva.* TO 'archivauser'@'localhost' IDENTIFIED BY 'archivauserpassword'
+------+
Replace "archivauser" and "archivauserpassword" with a username and password of your choice. If Archiva is not running on the same server as your MySQL database server, replace "localhost" with the hostname or IP address of the Archiva server.