Changes

Jump to navigation Jump to search
5,276 bytes added ,  05:55, 25 February 2013
Line 1: Line 1: −
<noinclude>{{TOCright}}</noinclude>
   
== Hostnames ==
 
== Hostnames ==
* http://git.sugarlabs.org
+
 
* http://cgit.sugarlabs.org
+
* [http://git.sugarlabs.org git.sugarlabs.org], Gitorious main site.
 +
* [http://src.sugarlabs.org/ src.sugarlabs.org], Git repositories capable for HTTP cloning.
 +
* Gitorious diagnostic page (only for admins) [http://git.sugarlabs.org/admin/diagnostics].
 +
* Gitorious diagnostic summary page [http://git.sugarlabs.org/admin/diagnostics/summary].
    
== Hardware ==
 
== Hardware ==
* XEN VM
     −
= Location =
+
[[Machine/jita]]
Hosted by the [http://www.osuosl.org/ Open Source Lab]
+
 
 +
== Administrative contact ==
 +
 
 +
git AT sugarlabs DOT org
 +
 
 +
== Sysadmins ==
   −
== Admins ==
+
For non-emergency calls, preferably send email to the administrative contact.
* OSL Support <support AT osuosl.org> (ask here for anything that requires root access)
+
 
* Lance Albertson <lance AT osuosl.org>, Ramereth on #osuosl Freenode
+
* [[User:alsroot|Aleksey Lim]]
* [[User:Bernie|Bernie Innocenti]], bernie on #sugar Freenode
  −
* [[User:LFaraone|Luke Faraone]], lfaraone on #sugar Freenode
  −
* [[User:sascha_silbe|Sascha Silbe]], silbe on #sugar Freenode
      
== Notes ==
 
== Notes ==
   −
=== Web interface ===
+
[http://gitorious.org/ Gitorious] hosting.
http://admin.osuosl.org/phpmyadmin
+
 
 +
{| class="wikitable"
 +
|-
 +
!scope="row" | Home
 +
|{{Code|/srv/gitorious}}
 +
|-
 +
!scope="row" | Daemon
 +
|{{Code|/etc/init.d/gitorious}}
 +
|-
 +
!scope="row" | Logs
 +
|{{Code|/srv/gitorious/app/log}}
 +
|-
 +
!scope="row" | Config
 +
|
 +
{{Code|/srv/gitorious/app/config/database.yml}}<br>
 +
{{Code|/srv/gitorious/app/config/gitorious.yml}}<br>
 +
{{Code|/etc/cron.daily/gitorious}}<br>
 +
{{Code|/etc/logrotate.d/gitorious}}<br>
 +
{{Code|/etc/httpd/conf.d/git.sugarlabs.org.conf}}
 +
|-
 +
!scope="row" | SSL certificates
 +
|
 +
{{Code|/etc/ssl/private/git.sugarlabs.org.key}}<br>
 +
{{Code|/etc/ssl/certs/git.sugarlabs.org.pem}}
 +
|-
 +
!scope="row" | Ports
 +
|
 +
{{Code|9418}} git server
 +
|-
 +
!scope="row" | Sources
 +
| http://gitorious.org/~alsroot/sugarlabs-org
 +
|-
 +
|}
 +
 
 +
=== Plugins ===
 +
 
 +
Sugar Labs Gitorious instance uses downstream several plugins. All of them are enabled from {{Code|app/processors/push_event_processor.rb}} file and placed to {{code|lib/}} directory.
 +
 
 +
==== CIA ====
 +
 
 +
Notify http://cia.vc about all commits.
 +
 
 +
Plugin file:
 +
 
 +
lib/cia.rb
 +
 
 +
{{Code|gitorious.yml}} configuration:
 +
 
 +
cia: true
 +
 
 +
==== Patchwork ====
 +
 
 +
[http://patchwork.sugarlabs.org/ Patchwork] integration.
 +
 
 +
Plugin file:
 +
 
 +
lib/patchwork.rb
 +
 
 +
{{Code|gitorious.yml}} configuration:
 +
 
 +
patchwork:
 +
  sugar:
 +
    url: "https://git.sugarlabs.org:0000000000000000000000000@patchwork.sugarlabs.org/xmlrpc/"
 +
    linkname: sugar
 +
    repositories:
 +
    - mainline
 +
    set_state: Accepted
 +
    find_states:
 +
    - New
 +
    - Under Review
 +
 
 +
==== Pootle commits ====
 +
 
 +
Send notification emails on every pootle commit.
 +
 
 +
Plugin file:
 +
 
 +
lib/emailer.rb
 +
 
 +
{{Code|gitorious.yml}} configuration:
 +
 
 +
emailer: true
 +
 
 +
=== Database tips ===
 +
 
 +
To make runtime changes in Gitorious database, follow regular Rails workflow - run {{Code|scripts/console}}:
 +
 
 +
cd /srv/gitorious/app
 +
sudo -u gitorious RAILS_ENV=production script/console
 +
 
 +
It is regular Ruby console and all features, like {{Code|TAB}} completion, work. To tweak Gitorious data, just use its [http://gitorious.org/gitorious/mainline/trees/master/app/models model classes], e.g.:
 +
 
 +
# search of particular object by its attributes
 +
user = User.find_by_login("user")
 +
project = Project.find_by_title("project")
 +
 +
# get object attributes
 +
user.email
 +
 +
# change object attributes
 +
project.owner = User.find_by_email("foo@bar")
 +
project.save!
 +
 +
# destroy object and all its dependencies
 +
user.destroy
 +
 +
# reset user password
 +
user = User.find_by_email("user")
 +
password_key = user.forgot_password!
 +
Mailer.deliver_forgotten_password(user, password_key)
 +
 +
# add repository committer
 +
committer = User.find_by_login("user")
 +
repo = Repository::find_by_path("sugar/mainline")
 +
repo.committerships.create_with_permissions!({:committer => committer}, (Committership::CAN_COMMIT))
 +
 +
# delete repository committer
 +
committer = User.find_by_login("user")
 +
repo = Repository::find_by_path("sugar/mainline")
 +
repo.committerships = repo.committerships.select {|i| !i.members.include? committer }
 +
 +
# change repository owner
 +
new_owner = User.find_by_login("user")
 +
repo = Repository::find_by_path("sugar/mainline")
 +
cs = repo.committerships.select {|i| i.committer == new_owner}.pop
 +
cs.permissions = (Committership::CAN_ADMIN | Committership::CAN_COMMIT | Committership::CAN_REVIEW)
 +
cs.save!
 +
repo.owner = new_owner
 +
repo.save!
 +
 +
# move repository to another project
 +
new_project = Project.find_by_title('sl-tweaks')
 +
repo = Repository::find_by_path("sat-solver/mainline")
 +
repo.project = new_project
 +
repo.name = "sat-solver"
 +
repo.save!
 +
 +
# check users permissions for particular repository
 +
repo = Repository::find_by_path("pukllanapac/mainline")
 +
repo.committerships.each {|i| puts "#{User.find(i.committer_id).login} review=#{i.permissions & Committership::CAN_REVIEW > 0}"}
 +
repo.committerships.each {|i| puts "#{User.find(i.committer_id).login} commit=#{i.permissions & Committership::CAN_COMMIT > 0}"}
 +
repo.committerships.each {|i| puts "#{User.find(i.committer_id).login} admin=#{i.permissions & Committership::CAN_ADMIN > 0}"}
 +
 
 +
=== TODO ===
 +
 
 +
Current gitorious patch doesn't handle renaming repositories properly and doesn't update symliks in {{Code|/srv/gitorious/repos-by-name}}. For now, run code to recreate symlinks:
 +
 
 +
  Repository::find_each {|i| s='/srv/gitorious/repos/' + i.real_gitdir; d='/srv/gitorious/repos-by-name/' + i.gitdir; FileUtils.makedirs(File.dirname(d)) if !File.exist?(File.dirname(d)); File.symlink(s, d) if !File.exists? d}
 +
 
 +
== Upgrade notes ==
 +
 
 +
{| class="wikitable"
 +
!scope="row" | git
 +
|
 +
{{Code|/srv/gitorious/app}}
 +
|-
 +
|}
 +
 
 +
After pulling new sources, migrate database:
 +
 
 +
cd /srv/gitorious/app/
 +
sudo -u gitorious RAILS_ENV=production rake db:migrate
 +
 
 +
To restart only Web application, instead of restarting the daemon, call:
 +
 
 +
touch /srv/gitorious/app/tmp/restart.txt
 +
 
 +
=== Hardware migration ===
 +
 
 +
'''Disable servers of both hosts.'''
 +
 
 +
mv /srv/gitorious/ssh/.ssh/authorized_keys{,.bak}
 +
 +
a2dissite git.sugarlabs.org
 +
a2dissite cgit.sugarlabs.org
 +
/etc/init.d/apache2 reload
 +
 +
/etc/init.d/gitorious-git stop
 +
/etc/init.d/gitorious-poller stop
 +
/etc/init.d/gitorious-sphinx stop
 +
/etc/init.d/gitorious-stomp stop
 +
 
 +
'''On old server.'''
 +
 
 +
* Dump MySQL database:
   −
=== Gitorious environments ===
+
mysqldump -u root -h localhost -p gitorious | xz > dump.slq.xz
   −
We do not have root on git.sugarlabs.org. Put the following aliases in your
+
'''On new server.'''
~/.bashrc to quickly switch to the Gitorious production, test and development
  −
environments:
     −
alias gitorious='sudo su - gitorious'
+
* Create MySQL user and database for Gitorious:
alias gittest='sudo su - gittest'
  −
alias gitdev='sudo su - gitdev'
  −
alias db='mysql -h db1.osuosl.org -u sugarlabs_git -p  sugarlabs_git_dev'
     −
=== Get a MySQL prompt ===
+
GRANT ALL PRIVILEGES ON *.* TO 'gitorious'@'localhost' IDENTIFIED BY '<insert password>' WITH GRANT OPTION;
type "db" at the prompt, then give the db password
+
FLUSH PRIVILEGES;
from ~gitorious/config/database.yml
+
CREATE DATABASE gitorious;
   −
=== Change project owner ===
+
* Make preparations from root user:
UPDATE projects SET user_id=(SELECT id FROM users WHERE login='jasg') WHERE slug='labyrinth';
     −
=== Change repo owner ===
+
useradd gitorious -d /srv/gitorious/ssh -m
UPDATE repositories SET user_id=(SELECT id FROM users WHERE login='jasg') WHERE name='mainline' AND project_id=(SELECT id FROM projects WHERE title='poll');
+
cat >> /srv/gitorious/ssh/.profile <<EOF
 +
export RAILS_ENV=production
 +
cd /srv/gitorious/app
 +
EOF
 +
xzcat dump.slq.xz | mysql -u root -p -D gitorious
    +
* Make preparations from gitorious user:
   −
=== Add committer ===
+
su - gitorious
  INSERT INTO committerships SET
+
        user_id=(select id from users where login='bernie'),
+
mkdir /srv/gitorious/repositories-mirror
        repository_id=(SELECT id FROM repositories where
+
  mkdir /srv/gitorious/repositories-mirror
                project_id=(SELECT id FROM projects WHERE title='sugar') AND name='mainline'),
+
mkdir /srv/gitorious/tmp
        kind=2, created_at=NOW(), updated_at=NOW();
+
 +
git clone git://git.sugarlabs.org/sl-tweaks/gitorious.git /srv/gitorious/app
 +
 +
rsync --delete-after -PHAXhaxv $OLD_HOST:/srv/gitorious/repositories/ /srv/gitorious/repositories/
 +
rsync --delete-after -PHAXhaxv $OLD_HOST:/srv/gitorious/app/public/system/ /srv/gitorious/app/public/system/
 +
rsync --delete-after -PHAXhaxv $OLD_HOST:/srv/gitorious/ssh/.ssh/authorized_keys.bak /srv/gitorious/ssh/.ssh/authorized_keys
 +
 +
cd /srv/gitorious/app
 +
rake db:migrate
 +
rake ts:rebuild
 +
rake mirror:symlinkedrepos
 +
rake assets:clear
   −
=== Hijack account to reset password ===
+
* Start up Gitorious.
update users set email='YOUREMAIL' where login='USER';
     −
Then make Gitorious send you a password reset email.
+
a2ensite git.sugarlabs.org
 +
a2ensite cgit.sugarlabs.org
 +
/etc/init.d/apache2 reload
 +
 +
/etc/init.d/gitorious-git start
 +
/etc/init.d/gitorious-poller start
 +
/etc/init.d/gitorious-sphinx start
 +
/etc/init.d/gitorious-stomp start
   −
update users set email='OLDEMAIL' where login='USER';
+
== Sources ==
   −
=== WARNING ===
+
* [https://gitorious.org/~alsroot/gitorious/sugarlabs-org Downstream repository].
To zap a user account, make sure you also remove
+
* [https://gitorious.org/gitorious/mainline Upstream repository].
its related records from all tables (committers,
  −
projects, repositories, events...)
 

Navigation menu