I have several ruby newbie problems with my deployment
1) First issue.. user rights and group permissions with ruby enterprise using PLESK To deploy i did create a git bare repo on my server inside /var/git/ myapp.git git remote add deployserver ssh://myserver.com/var/git/myapp.git For deploy i do: git push deployserver master which uploads my local files to the git repo on myserver.com/var/git/myapp.git Then in a SSH session on the myserver.com I goto /myapps/ sitename.com/ and then git pull (clone on 1st time ) ssh://myserver.com/var/git/myapp.git This actually copies the app from my servers repo to the correct servers directory where i host these files with ruby enterprise I login as user myuser and myusergroup those are something like git:usergroup and needs to be nameofthedomaintheapprunson:psaserv ( this is the username plesk runs under for that domain , psaserv is the usergroup for the plesk server where apache , etc runs under ) How can i optimalize this, it seems all not very logic. I know I can use capify but have had a hell of a time with it, and defaulted to the simple git push pull 2) I cannot do rake:db:create even my mysql socket is set correctly but it wont allow me to create any database, to omit this i created the database in mysql from command line, normally you create database form inside the plesk config panel, but then i could not do rake:db:create:all and that seems way more efficient to me. Plesk has no root user for Mysql but "admin" with the same password as you login to your plesk config panel which is normally on the server at https://domain.com:8443. So THAT is set in my database.yml -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

