Difference between revisions of "User:Andreas Plank/new wiki"

From Biowikifarm Metawiki
Jump to: navigation, search
m
m
Line 9: Line 9:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
phpMyAdmin: http://biowikifarm.net/phpmyadmin_v3-3-7/
+
== Database ==
* copy z_en_template ->  as new database, e.g. my_new_wiki
+
http://biowikifarm.net/phpmyadmin_v3-3-7/
* grant rights to user 'wikiuser' for new database ( SELECT, INSERT, UPDATE, DELETE, DROP, INDEX, CREATE TEMPORARY TABLES )
+
* copy z_en_template ->  as new database, e.g. newdatabase
 +
* or export structure as SQL and execute it in newdatabase
  
in shell: copy a recent wiki: v-XXX (virtuel)
+
grant rights to user 'wikiuser' for new database
<syntaxhighlight lang="bash">
+
<syntaxhighlight lang="mysql">
sudo cp --recursive --verbose XXX YYY
+
-- DROP , INDEX ,CREATE TEMPORARY TABLES seems necessary only for Semantic MediaWiki Wikis or maybe only Semantic Forms
 +
GRANT SELECT , INSERT , UPDATE , DELETE , DROP , INDEX ,CREATE TEMPORARY TABLES ON  `newdatabase` . * TO  'wikiuser'@'localhost';
 
</syntaxhighlight>
 
</syntaxhighlight>
duplicate folder w:
 
* for short name
 
* clear cache directory
 
* remove images from old wiki
 
  
adjaust LocalSettings.php
+
== Wiki ==
 +
Add Wiki paths to and run [[Mediawiki installation/create or upgrade vhost-wiki.sh]]
 +
 
 +
=== Settings ===
 +
Adjust LocalSettings.php/Common Settings
 
* secret key (!) <syntaxhighlight lang="bash">date | sha224sum</syntaxhighlight>
 
* secret key (!) <syntaxhighlight lang="bash">date | sha224sum</syntaxhighlight>
* db, paths, logo, contentlanguage
+
* db, paths, logo, content language
 +
* for SMW in Common Settings: use the dbname as switch
  
Common Settings file for SMW: dbname as switch to
+
Run maintenance wiki update script
 +
sudo -u www-data php ./maintenance/update.php --dbuser wikiadmin --conf ./LocalSettings.php
 +
 
 +
== NGINX ==
 +
 
 +
Add URL to /etc/nginx/sites-available/
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
 
cd /etc/nginx/sites-available/ # : file: default adjustm nginx config: adjust server names
 
cd /etc/nginx/sites-available/ # : file: default adjustm nginx config: adjust server names
 
</syntaxhighlight>
 
</syntaxhighlight>
restart apache, nginx, php5-fpm
+
 
 +
Symlink newwiki in /etc/nginx/sites-available/ to /etc/nginx/sites-enabled/
 +
* test all nginx configuration before restarting <code>sudo nginx -t -c /etc/nginx/nginx.conf</code>
 +
* restart nginx <code>sudo service nginx restart</code>
 +
 
 +
=== Add certificate ===
 +
Add URL for a new certificate to get also https working see [[HTTPS_Support_via_Let’s_Encrypt#Updating_the_certificates_for_newly_added_wikis|HTTPS Support via Let’s Encrypt]]
 +
 
 +
=== Optionally restarts ===
 +
Usually not needed: restart nginx, php5-fpm, apache
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
 
sudo /usr/sbin/apache2ctl -k graceful && sudo service nginx restart && sudo service php5-fpm restart
 
sudo /usr/sbin/apache2ctl -k graceful && sudo service nginx restart && sudo service php5-fpm restart
 
</syntaxhighlight>
 
</syntaxhighlight>
 
Run maintenance wiki update script
 

Revision as of 18:24, 5 February 2019

$wgSiteNotice = "Announcing message of upgrade";
$wgReadOnly = 'Database is in read only mode, because of Upgrading to MediaWiki 1.26.XX';
cd /var/www
# find an extension
sudo find . -maxdepth 3 -iname '*settings*.php' -type f -exec sudo grep --ignore-case --with-filename --line-number --color=auto "/Arrays" '{}' ';'

Database

http://biowikifarm.net/phpmyadmin_v3-3-7/

  • copy z_en_template -> as new database, e.g. newdatabase
  • or export structure as SQL and execute it in newdatabase

grant rights to user 'wikiuser' for new database

-- DROP , INDEX ,CREATE TEMPORARY TABLES seems necessary only for Semantic MediaWiki Wikis or maybe only Semantic Forms
GRANT SELECT , INSERT , UPDATE , DELETE , DROP , INDEX ,CREATE TEMPORARY TABLES ON  `newdatabase` . * TO  'wikiuser'@'localhost';

Wiki

Add Wiki paths to and run Mediawiki installation/create or upgrade vhost-wiki.sh

Settings

Adjust LocalSettings.php/Common Settings

  • secret key (!)
    date | sha224sum
    
  • db, paths, logo, content language
  • for SMW in Common Settings: use the dbname as switch

Run maintenance wiki update script

sudo -u www-data php ./maintenance/update.php --dbuser wikiadmin --conf ./LocalSettings.php

NGINX

Add URL to /etc/nginx/sites-available/

cd /etc/nginx/sites-available/ # : file: default adjustm nginx config: adjust server names

Symlink newwiki in /etc/nginx/sites-available/ to /etc/nginx/sites-enabled/

  • test all nginx configuration before restarting sudo nginx -t -c /etc/nginx/nginx.conf
  • restart nginx sudo service nginx restart

Add certificate

Add URL for a new certificate to get also https working see HTTPS Support via Let’s Encrypt

Optionally restarts

Usually not needed: restart nginx, php5-fpm, apache

sudo /usr/sbin/apache2ctl -k graceful && sudo service nginx restart && sudo service php5-fpm restart