Manual:Running MediaWiki on Solaris 11 / opensolaris
From MediaWiki.org
Installation OpenSolaris[edit]
# Download OpenSolaris 2009.06 # http://hub.opensolaris.org/bin/view/Main/downloads use link http://dlc.sun.com/osol/opensolaris/2009/06/osol-0906-x86.iso
Start apache and mysql[edit]
look for status # root@powerbook # svcs -a | grep mysql online 12:47:10 svc:/application/database/mysql:version_50 # root@powerbook # svcs -a | grep apa online 10:37:05 svc:/network/http:apache22
start services # svcadm enable svc:/application/database/mysql:version_50 # svcadm enable svc:/network/http:apache22
Setup mysql[edit]
create user and grant rights to user # root@powerbook # /usr/mysql/5.0/bin/mysql -u root --password=?????? create database wikidb; grant index, create, select, insert, update, delete, alter, lock tables on wikidb.* to 'wikiuser'@'localhost' identified by '???passwd???';
see Manual:Installing_MediaWiki
