Difference between revisions of "Service/wiki"

From Sugar Labs
Jump to navigation Jump to search
(24 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<noinclude>{{TOCright}}
+
<noinclude>
 
[[Category:Wiki]]
 
[[Category:Wiki]]
 +
[[Category:Service|wiki]]
 
</noinclude>
 
</noinclude>
 +
Statistics: http://stats.sugarlabs.org/wiki.sugarlabs.org/
 
== Hostnames ==
 
== Hostnames ==
  
 
* [http://wiki.sugarlabs.org wiki.sugarlabs.org]
 
* [http://wiki.sugarlabs.org wiki.sugarlabs.org]
 
* [http://wiki-devel.sugarlabs.org wiki-devel.sugarlabs.org]
 
* [http://wiki-devel.sugarlabs.org wiki-devel.sugarlabs.org]
* [http://wiki-testing.sugarlabs.org wiki-testing.sugarlabs.org]
+
* [http://pe.sugarlabs.org pe.sugarlabs.org]
 +
* [http://cl.sugarlabs.org cl.sugarlabs.org]
 +
* [http://co.sugarlabs.org co.sugarlabs.org]
 +
* [http://ar.sugarlabs.org ar.sugarlabs.org]
  
 
== Hosted on ==
 
== Hosted on ==
Line 15: Line 20:
  
 
<webmaster ''at'' sugarlabs.org>
 
<webmaster ''at'' sugarlabs.org>
 +
 +
== Account Creation ==
 +
 +
* See https://www.mediawiki.org/wiki/Manual:Preventing_access#Restrict_account_creation
 +
* Create account page: https://wiki.sugarlabs.org/index.php?title=Special:UserLogin&type=signup
 +
 +
== Local Labs contacts ==
 +
 +
* Peru: [[User:Sebastian|Sebastian Silva]]
 +
* Colombia: Cristian Paul Peñaranda Rojas
 +
* Argentina: Gustavo Ibarra
 +
 +
Local labs, please confirm contacts and add links.
  
 
== Sysadmins ==
 
== Sysadmins ==
  
* [[User:Bernie|Bernie Innocenti]]
+
* [[Wiki Team/Contacts]] for wiki content and user accounts
* See [[Wiki Team/Contacts]]
+
* [[User:Bernie|Bernie Innocenti]] for hosting issues
== Notes ==
+
* [[User:Sebastian|Sebastian Silva]] for the Local Labs wikis
  
The main wiki
+
== Wiki instances ==
  
/srv/www-sugarlabs/wiki/  
+
The main wiki lives here at <code>/srv/www-sugarlabs/wiki/</code>
  
 
Except for trivial changes, work on the wiki should be carried on
 
Except for trivial changes, work on the wiki should be carried on
in the wiki-devel instance, then moved to wiki-testing for feedback
+
in the parallel wiki-devel instance before landing onto the production instance.
before putting it into the production instance.
+
 
 +
{{Highlight|'''Note:''' The devel wiki has an outdated snapshot of the page database and its own slightly different server configuration.}}
  
Sometimes the devel and testing instances contain interim work
+
Sometimes the devel instance contains interim work performed by various wiki helpers. Do not sync changes blindly to the
performed by various wiki helpers. Do not sync changes blindly to the
 
 
production wiki!
 
production wiki!
   
+
 
 +
Before overwriting the page database, please
 +
* observe http://wiki-devel.sugarlabs.org/go/Category:Under_construction
 +
* announce the plan on systems@ and to any collaborators who have signed their 'Under construction' pages in the template (such as by using the 'E-mail this user' link in the sidebar for the wiki user's page, even when it is a red link or not yet created).
 +
 
 +
== Creating a Local Labs wiki ==
 +
 
 +
* Add a group for the wiki (vigr)
 +
 
 +
  cd /srv/www-sugarlabs
 +
cp -a co.sugarlabs.org pe.sugarlabs.org
 +
chown -R icarito:sugarwiki-pe pe.sugarlabs.org
 +
cd pe.sugarlabs.org/wiki
 +
rm -r images/*
 +
vim LocalSettings.php
 +
vim SecretSettings.php
 +
 
 +
* Create apache virtual host:
 +
 
 +
  cp -a /etc/apache2/sites-available/pe.sugarlabs.org /etc/apache2/sites-available/ar.sugarlabs.org
 +
  vim /etc/apache2/sites-available/ar.sugarlabs.org
 +
  a2ensite ar.sugarlabs.org
 +
 
 +
* Create DB with some clever trick. I reused <code>config/index.php</code> to setup a new MediaWiki instance and then I've thrown away the generated <code>LocalConfig.php</code>:
 +
 
 +
  mv LocalConfig.php LocalConfig.good
 +
  cp -a /srv/www-sugarlabs/co.sugarlabs.org/config .
 +
  (go to http://ar.sugarlabs.org/wiki/config/index.php)
 +
  rm -r config LocalConfig.php
 +
  mv LocalConfig.good LocalConfig.php
 +
 
 +
* Create tables for OpenID:
 +
 
 +
mysql -u root -p pe_sugarlabswiki < extensions/OpenID/openid_table.sql
 +
 
 +
== Installation ==
 +
 
 +
Our MediaWiki instances are installed from git to allow easy rebasing of our changes on upgrades.
 +
 
 +
git clone https://gerrit.wikimedia.org/r/p/mediawiki/core.git wiki-devel
 +
cd wiki-devel
 +
git checkout -b REL1_19 remotes/origin/REL1_19
 +
git clone https://gerrit.wikimedia.org/r/p/mediawiki/extensions.git extensions-all
 +
cd extensions-all
 +
git submodule update --init
 +
cd ../extensions
 +
# for each needed extensions
 +
ln -s ../extensions-all/EXT
 +
 
 +
For the full details on this installation method, see http://www.mediawiki.org/wiki/Download_from_Git
 +
 
 +
== Visual Editor ==
 +
 
 +
This wiki has the VisualEditor extension.
 +
 
 +
In order to do that, we need the parsoid node js service.  Since Sunjammer is running too old of a version, this service is hosted on freedom.  It can be started using:
 +
container.yml start /home/sam/parsoid -d
 +
And is accessed at http://freedom.sugarlabs.org:8001/
 +
 
 
== Upgrade notes ==
 
== Upgrade notes ==
  
The wiki is installed from svn. Upgrades can be carried on by switching
+
We update our MediaWiki instances by simply pulling from the remote git repo and then switching to a
to a different branch. Beware of the extensions directory: it comes from
+
different stable branch:
a different repository and its presence seems to confuse the top-level
+
 
svn. As a work-around for upgrades, I move it away and rename
+
git pull
extensions.old in its place.
+
git checkout -b REL1_xx remotes/origin/REL1_xx
 +
 
 +
The "extensions-all" directory contains a bunch of git repositories stitched together with 'git submodule'.
 +
To update it:
 +
 
 +
cd extensions-all
 +
git submodule update
 +
 
 +
Now run update script:
 +
 
 +
php maintenance/update.php
 +
 
 +
In the case of Local Labs wikis the correct command for performing the updates is:
  
 +
php maintenance/update.php --conf /srv/www-sugarlabs/pe.sugarlabs.org/wiki/LocalSettings.php
 +
(replace pe.sugarlabs.org for the correct path for your local lab w)
  
== See also ==
+
If the SemanticMediaWiki extension is enabled (we don't use it), also refresh its tables:
  
* [[Sysadmin/Add_wiki]], adding Local Labs wikis.
+
cd extensions/SemanticMediaWiki/maintenance
 +
php SMW_setup.php

Revision as of 20:09, 9 July 2016


Statistics: http://stats.sugarlabs.org/wiki.sugarlabs.org/

Hostnames

Hosted on

Machine/sunjammer

Administrative contact

<webmaster at sugarlabs.org>

Account Creation

Local Labs contacts

  • Peru: Sebastian Silva
  • Colombia: Cristian Paul Peñaranda Rojas
  • Argentina: Gustavo Ibarra

Local labs, please confirm contacts and add links.

Sysadmins

Wiki instances

The main wiki lives here at /srv/www-sugarlabs/wiki/

Except for trivial changes, work on the wiki should be carried on in the parallel wiki-devel instance before landing onto the production instance.

Note: The devel wiki has an outdated snapshot of the page database and its own slightly different server configuration.

Sometimes the devel instance contains interim work performed by various wiki helpers. Do not sync changes blindly to the production wiki!

Before overwriting the page database, please

  • observe http://wiki-devel.sugarlabs.org/go/Category:Under_construction
  • announce the plan on systems@ and to any collaborators who have signed their 'Under construction' pages in the template (such as by using the 'E-mail this user' link in the sidebar for the wiki user's page, even when it is a red link or not yet created).

Creating a Local Labs wiki

  • Add a group for the wiki (vigr)
cd /srv/www-sugarlabs
cp -a co.sugarlabs.org pe.sugarlabs.org
chown -R icarito:sugarwiki-pe pe.sugarlabs.org
cd pe.sugarlabs.org/wiki
rm -r images/*
vim LocalSettings.php
vim SecretSettings.php
  • Create apache virtual host:
 cp -a /etc/apache2/sites-available/pe.sugarlabs.org /etc/apache2/sites-available/ar.sugarlabs.org
 vim /etc/apache2/sites-available/ar.sugarlabs.org
 a2ensite ar.sugarlabs.org
  • Create DB with some clever trick. I reused config/index.php to setup a new MediaWiki instance and then I've thrown away the generated LocalConfig.php:
 mv LocalConfig.php LocalConfig.good
 cp -a /srv/www-sugarlabs/co.sugarlabs.org/config .
 (go to http://ar.sugarlabs.org/wiki/config/index.php)
 rm -r config LocalConfig.php
 mv LocalConfig.good LocalConfig.php
  • Create tables for OpenID:
mysql -u root -p pe_sugarlabswiki < extensions/OpenID/openid_table.sql

Installation

Our MediaWiki instances are installed from git to allow easy rebasing of our changes on upgrades.

git clone https://gerrit.wikimedia.org/r/p/mediawiki/core.git wiki-devel
cd wiki-devel
git checkout -b REL1_19 remotes/origin/REL1_19
git clone https://gerrit.wikimedia.org/r/p/mediawiki/extensions.git extensions-all
cd extensions-all
git submodule update --init
cd ../extensions
# for each needed extensions
ln -s ../extensions-all/EXT

For the full details on this installation method, see http://www.mediawiki.org/wiki/Download_from_Git

Visual Editor

This wiki has the VisualEditor extension.

In order to do that, we need the parsoid node js service. Since Sunjammer is running too old of a version, this service is hosted on freedom. It can be started using:

container.yml start /home/sam/parsoid -d

And is accessed at http://freedom.sugarlabs.org:8001/

Upgrade notes

We update our MediaWiki instances by simply pulling from the remote git repo and then switching to a different stable branch:

git pull
git checkout -b REL1_xx remotes/origin/REL1_xx

The "extensions-all" directory contains a bunch of git repositories stitched together with 'git submodule'. To update it:

cd extensions-all
git submodule update

Now run update script:

php maintenance/update.php

In the case of Local Labs wikis the correct command for performing the updates is:

php maintenance/update.php --conf /srv/www-sugarlabs/pe.sugarlabs.org/wiki/LocalSettings.php
(replace pe.sugarlabs.org for the correct path for your local lab w)

If the SemanticMediaWiki extension is enabled (we don't use it), also refresh its tables:

cd extensions/SemanticMediaWiki/maintenance
php SMW_setup.php