< Manual:Running MediaWiki on Solaris 11
| Installation guides |
|---|
| FreeBSD |
| GNU/Linux |
| - ALT Linux |
| - Arch Linux |
| - Debian or Ubuntu |
| - Fedora |
| - Gentoo |
| - Mandriva |
| - Red Hat Enterprise Linux or CentOS |
| - Slackware |
| macOS |
| Solaris |
| - Solaris 11 / opensolaris |
| - Solaris 10 |
| Windows |
| - Windows Server 2019 |
| - Windows Server 2016 |
| - Windows Subsystem for Linux |
| on a stick |
| - Uniform Server |
| - XAMPP |
| Sourceforge.net |
Installation OpenSolaris
# Download Oracle Solaris 11.1 # http://www.oracle.com/us/downloads/index.html
Start apache and mysql
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
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 also
This article is issued from Mediawiki. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.