QMT Wiki: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 16: | Line 16: | ||
# systemctl enable --now mysqld httpd | # systemctl enable --now mysqld httpd | ||
# mysql_secure_installation | # mysql_secure_installation | ||
# tee /root/sql.cnf<<EOF | # tee /root/sql.cnf<<EOF | ||
[client] | [client] | ||
Line 27: | Line 22: | ||
host=localhost | host=localhost | ||
EOF | EOF | ||
Download latest MediaWiki | |||
# cd /var/www | |||
# wget https://releases.wikimedia.org/mediawiki/1.41/mediawiki-1.41.0.tar.gz | |||
# tar zxvf mediawiki-1.41.0.tar.gz | |||
</pre> | </pre> | ||
Create MySQL DB, restore old database (last step) if upgrading...skip restore if this is a new wiki | Create MySQL DB, restore old database (last step) if upgrading...skip restore if this is a new wiki |
Revision as of 10:47, 29 March 2024
On old machine Backup old QMT Wiki # /usr/bin/mysqldump -uqmtwikiuser -pqmtwikipass -hlocalhost qmtwiki --single-transaction > qmtwiki.sql On new machine If Apache, MySQL, PHP are not installed # yum -y update # yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm # yum -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm # yum-config-manager --disable 'remi-php*' # yum-config-manager --enable remi-php81 # yum -y install php php-{mysql,pdo,gd,intl,cli,fpm,mysqlnd,zip,devel,gd,mbstring,curl,xml,pear,bcmath,json,opcache,redis,memcache}\ texlive # yum -y install mysql mysql-server httpd # systemctl enable --now mysqld httpd # mysql_secure_installation # tee /root/sql.cnf<<EOF [client] user=root password='mypass' host=localhost EOF Download latest MediaWiki # cd /var/www # wget https://releases.wikimedia.org/mediawiki/1.41/mediawiki-1.41.0.tar.gz # tar zxvf mediawiki-1.41.0.tar.gz
Create MySQL DB, restore old database (last step) if upgrading...skip restore if this is a new wiki
# credfile=/root/sql.cnf # mysqladmin --defaults-extra-file=$credfile create qmtwiki # mysql --defaults-extra-file=$credfile -e "CREATE USER qmtwikiuser@localhost IDENTIFIED BY 'qmtwikipass'" # mysql --defaults-extra-file=$credfile -e "GRANT ALL PRIVILEGES ON qmtwiki.* TO qmtwikiuser@localhost" # mysql -u root -p qmtwiki < qmtwiki.sql
Configure Apache
# tee /etc/httpd/sites-available/wiki.mydomain.com.conf<<EOF <VirtualHost *:80> ServerName wiki.mydomain.com DocumentRoot /var/www/mediawiki-1.41.0 <Directory /> Options FollowSymLinks AllowOverride None </Directory> ErrorLog /var/log/httpd/wiki.mydomain.com-error.log LogLevel debug CustomLog /var/log/httpd/wiki.mydomain.com-access.log combined </VirtualHost> EOF
Configure new, or upgrade old, wiki, and use db parameters specified above when prompted
# http://wiki.mydomain.com/mw-config