X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/222d31e435f003ec59e84860d2fa5129449f69de..48183e2d53d41bcdf32153e64dcea968f3d90ae3:/db/README diff --git a/db/README b/db/README index 4a7067e6c..73d391948 100644 --- a/db/README +++ b/db/README @@ -1,15 +1,36 @@ -you want to do something like this +Creating database +=================== + +OSM server uses a database with the following name: + +openstreetmap + +You may create it with your preferable client or run next (linux) command: + +$ mysqladmin -u -p create openstreetmap + +(change with appropriate username of administrative user eg. root ) + +Creating user, password, and access rights +============================================ + +$ mysql -u -p + +(change with appropriate username of administrative user eg. root ) -$ su -# mysqladmin create openstreetmap -# mysql > grant all privileges on openstreetmap.* to 'openstreetmap'@'localhost' identified by 'openstreetmap'; +> flush privileges; > exit -# exit + +Creating database skeleton tables +=================================== + $ mysql openstreetmap -u openstreetmap -p < db/create_database.sql -(the last line above gets you to what the server has right now) +New server patch (RAILS) +========================== + +Run following command to prepare tables to be OSM RAILS distribution compatible: $ mysql openstreetmap -u openstreetmap -p < db/migrate.sql -(this line gets you to where its going to be when we go live with rails)