Mediawiki/MultipleInstances
From r00tedvw.com wiki
(Difference between revisions)
(→Overview) |
|||
Line 1: | Line 1: | ||
[[Mediawiki/Installing|Installing]] | [[Mediawiki/MultipleInstances|Multiple Instances]] | [[Mediawiki/Installing|Installing]] | [[Mediawiki/MultipleInstances|Multiple Instances]] | ||
==Overview== | ==Overview== | ||
− | If you've followed the instructions | + | If you've followed the previous instructions for a single instance, adding multiple instances of mediawiki should be a snap. |
+ | |||
==setup mysql== | ==setup mysql== | ||
login to db | login to db |
Revision as of 19:41, 28 April 2014
Installing | Multiple Instances
Overview
If you've followed the previous instructions for a single instance, adding multiple instances of mediawiki should be a snap.
setup mysql
login to db
~$ mysql -u root -p
Create next mysql wiki user
~$ mysql> CREATE USER 'wiki2'@'localhost' IDENTIFIED BY 'THISpasswordSHOULDbeCHANGED'; ~$ mysql> exit
login as new user to verify account works
~$ mysql -u wiki2 -p ~$ mysql> exit
create DB
~$ mysql -u root -p ~$ mysql> CREATE DATABASE wikidatabase2;
verify DB creation
~$ mysql> SHOW DATABASES;
assign rights to wiki user for new database created
~$ mysql> GRANT ALL PRIVILEGES ON wikidatabase2.* TO 'wiki2'@'localhost' IDENTIFIED BY 'wikiuserpassword' WITH GRANT OPTION; ~$ mysql> exit
verify permissions have been granted
~$ mysql -u wiki2 -p ~$ mysql> SHOW GRANTS; +---------------------------------------------------------------------------------------------------------------+ | Grants for wiki2@localhost | +---------------------------------------------------------------------------------------------------------------+ | GRANT USAGE ON *.* TO 'wiki2'@'localhost' IDENTIFIED BY PASSWORD '*2K21458K438UYE85A38B9Y7Y78DAEBF4T8689YK4' | | GRANT ALL PRIVILEGES ON `wikidatabase2`.* TO 'wiki2'@'localhost' WITH GRANT OPTION | +---------------------------------------------------------------------------------------------------------------+ 1 row in set (0.00 sec)