X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/88297a682cd76ab9290cd8bf278424bf5c8458e5..a61e2ed69047cc4756d4ba11617ea1b2c2ff98cb:/db/README diff --git a/db/README b/db/README index 68fc8e6ce..466a16cc4 100644 --- a/db/README +++ b/db/README @@ -1,9 +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 + +New server patch (RAILS) +========================== + +Run follow command to prepare tables to be OSM REILS distribution compatible : + +$ mysql openstreetmap -u openstreetmap -p < db/migrate.sql +