Setting up a mediawiki instance on the sandbox: Difference between revisions

From XPUB & Lens-Based wiki
No edit summary
Line 16: Line 16:


Setup the database: SEE [[User:Rita_Graca/trimester6/technicaldocumentation#Installing_Mediawiki_on_the_pi | Rita's Notes]] PART 6!
Setup the database: SEE [[User:Rita_Graca/trimester6/technicaldocumentation#Installing_Mediawiki_on_the_pi | Rita's Notes]] PART 6!
  sudo mysql -u root -p
  CREATE DATABASE USERNAMEwiki; 
  CREATE USER 'USERNAMEwiki'@'localhost' IDENTIFIED BY 'SOMEPASSWORD';
  GRANT ALL PRIVILEGES ON USERNAMEwiki.* TO 'USERNAMEwiki'@'localhost';
  FLUSH PRIVILEGES;
  quit


Now go to the wiki setup script: https://hub.xpub.nl/sandbox/~USERNAME/wiki/mw-config/index.php
Now go to the wiki setup script: https://hub.xpub.nl/sandbox/~USERNAME/wiki/mw-config/index.php
 
Use USERNAMEwiki for database + username + fill in the password you used.


== See also ==  
== See also ==  

Revision as of 00:43, 15 January 2021

Instructions

ssh to the sandbox

cd public_html

Download the latest mediawiki (copy link location from mediawiki download page)...

wget https://releases.wikimedia.org/mediawiki/1.35/mediawiki-1.35.1.tar.gz
tar xf mediawiki-1.35.1.tar.gz 

Rename the wiki folder something short like "wiki"

mv mediawiki-1.35.1 wiki

Setup the database: SEE Rita's Notes PART 6!

 sudo mysql -u root -p
 CREATE DATABASE USERNAMEwiki;  
 CREATE USER 'USERNAMEwiki'@'localhost' IDENTIFIED BY 'SOMEPASSWORD';
 GRANT ALL PRIVILEGES ON USERNAMEwiki.* TO 'USERNAMEwiki'@'localhost'; 
 FLUSH PRIVILEGES;
 quit

Now go to the wiki setup script: https://hub.xpub.nl/sandbox/~USERNAME/wiki/mw-config/index.php Use USERNAMEwiki for database + username + fill in the password you used.

See also