From: Steve Coast Date: Thu, 23 Nov 2006 12:32:15 +0000 (+0000) Subject: add docs from dpenezic@gmail.com X-Git-Tag: live~8570 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/3bbeb70642a9403e0d1acce9fc9f780065206eab add docs from dpenezic@gmail.com --- diff --git a/db/README b/db/README index 1b50ccd9b..466a16cc4 100644 --- a/db/README +++ b/db/README @@ -1,16 +1,36 @@ -you want to do something like this +Creating database +===================== + +OSM server use databse with follow name : + +openstreetmap + +You may create it with your prefrable client or run next (linux) command : + +$ mysqladmin -u -p create openstreetmap + +(change with appropriate username of administrativ user eg. root ) + +Creating user, password, and access rightts +============================================= + +$ mysql -u -p + +(change with appropriate username of administrativ 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 follow command to prepare tables to be OSM REILS 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)