X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/222d31e435f003ec59e84860d2fa5129449f69de..a8d6714aebfacfc32808a5aca41f6dae785a14cf:/db/README diff --git a/db/README b/db/README index 4a7067e6c..466a16cc4 100644 --- a/db/README +++ b/db/README @@ -1,15 +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)