How To Install MediaWiki On Ubuntu 18.04 With Nginx MariaDB And PHP: Perbedaan antara revisi

Dari Catatan Pak Samsul
Loncat ke navigasi Loncat ke pencarian
(←Membuat halaman berisi '-----------------------------------------------------------------------------------------------------------------------------------------------------------------------...')
 
Tidak ada ringkasan suntingan
Baris 1: Baris 1:
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
PHP Mcrypt extension is an interface to the mcrypt cryptography library and it supports a wide variety of block algorithms such as DES, TripleDES, Blowfish (default), 3-WAY, SAFER-SK64, SAFER-SK128, TWOFISH, TEA, RC2 and GOST in CBC, OFB, CFB and ECB cipher modes.
<br />
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
apt update ; apt install -y build-essential net-tools curl git software-properties-common php php-pear php-dev libmcrypt-dev
which pecl ; php -v


PECL usage: pecl help
=== '''---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------''' ===
pecl channel-update pecl.php.net


mkdir -p /tmp/pear/cache
=== '''Our Server Specification-     ''' ===
pecl search mcrypt
pecl install mcrypt


Ubuntu 20.04 LTS
=== '''Os:Ubuntu 18.04 LTS Bionic Beaver 64Bit   |            IP address- 192.168.1.50                 | Hostname :www.yourdomain.com''' ===
nano /etc/php/*/cli/php.ini    || nano /etc/php/*/apache2/php.ini
extension=mcrypt.so
php -m | grep mcrypt


Ubuntu 18.04: -
=== '''---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------''' ===
nano /etc/php/7.2/cli/php.ini  || nano /etc/php/7.2/apache2/php.ini
extension=mcrypt.so
php -m | grep mcrypt


systemctl daemon-reload
=== '''lsb_release -cd  ; getconf LONG_BIT ; whoami ; hostname -f ; hostname -I ; apt update ;  apt install -y build-essential software-properties-common curl gdebi wget aptitude nano git net-tools lsb-release apt-transport-https''' ===
systemctl restart apache2  Or systemctl restart nginx
 
=== '''apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8''' ===
 
=== '''add-apt-repository 'deb [arch=amd64,arm64,ppc64el] <nowiki>http://mirror.biznetgio.com/mariadb/repo/10.4/ubuntu</nowiki> bionic main'''' ===
 
=== '''add-apt-repository ppa:ondrej/php -y''' ===
 
=== '''apt-get update ; apt-get install -y nginx mariadb-server mariadb-client  php7.3 php7.3-cli php7.3-fpm php7.3-cgi php7.3-bcmath php7.3-curl php7.3-gd php7.3-intl php7.3-json php7.3-mbstring php7.3-mysql php7.3-opcache php7.3-sqlite3 php7.3-xml php7.3-zip php7.3-snmp php7.3-json php7.3-imap php7.3-common php7.3-tidy''' ===
 
=== '''systemctl start nginx mariadb ; systemctl enable nginx mariadb''' ===
 
=== '''mysql_secure_installation''' ===
 
=== '''mysql -u root -p''' ===
 
=== '''create database db;''' ===
 
=== '''grant all on db.* to 'dbuser'@'localhost' identified by 'dbpass';''' ===
 
=== '''quit''' ===
 
=== '''gedit /etc/php/7.3/fpm/php.ini &>/dev/null                                                [ date.timezone ="Asia/Kolkata" cgi.fix_pathinfo=0 ]''' ===
 
=== '''gedit /etc/php/7.3/fpm/pool.d/www.conf &>/dev/null                          [ env[HOSTNAME] = $HOSTNAME ]''' ===
 
=== '''wget <nowiki>https://releases.wikimedia.org/mediawiki/1.33/mediawiki-1.33.0.tar.gz</nowiki>''' ===
 
=== '''tar -xvzf  mediawiki-1.33.0.tar.gz''' ===
 
=== '''cp -r mediawiki-1.33.0 /var/www/html/mediawiki''' ===
 
=== '''chown -R www-data:www-data /var/www/html/ ; chmod -R 755 /var/www/html/''' ===
 
=== '''gedit /etc/nginx/sites-available/default &>/dev/null''' ===
 
=== '''server {''' ===
 
=== '''   server_name www.yourdomain.com;''' ===
 
=== '''   access_log /var/log/nginx/yourdomain-access.log;''' ===
 
=== '''   error_log /var/log/nginx/yourdomain-error.log;''' ===
 
=== '''   root /var/www/html/mediawiki/;''' ===
 
=== '''   location / {''' ===
 
=== '''       index index.php;''' ===
 
=== '''       try_files $uri $uri/ /index.php$is_args$args;''' ===
 
=== '''   }''' ===
 
=== '''   location ~ \.php$ {''' ===
 
=== '''       include snippets/fastcgi-php.conf;''' ===
 
=== '''       fastcgi_pass unix:/run/php/php7.3-fpm.sock;''' ===
 
=== '''       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;''' ===
 
=== '''   }''' ===
 
=== '''}''' ===
 
=== '''nginx -t  ; echo "192.168.1.50 www.yourdomain.com" >> /etc/hosts ; systemctl restart php7.3-fpm nginx mariadb''' ===
 
=== '''<nowiki>http://www.yourdomain.com</nowiki>''' ===
 
=== '''cp -r /home/ubuntu/Downloads/LocalSettings.php /var/www/html/mediawiki/''' ===
 
=== '''---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------''' ===
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Revisi per 31 Januari 2021 10.28



---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Our Server Specification-     

Os:Ubuntu 18.04 LTS Bionic Beaver 64Bit   |            IP address- 192.168.1.50                 | Hostname :www.yourdomain.com

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

lsb_release -cd  ; getconf LONG_BIT ; whoami ; hostname -f ; hostname -I ; apt update ;  apt install -y build-essential software-properties-common curl gdebi wget aptitude nano git net-tools lsb-release apt-transport-https

apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8

add-apt-repository 'deb [arch=amd64,arm64,ppc64el] http://mirror.biznetgio.com/mariadb/repo/10.4/ubuntu bionic main'

add-apt-repository ppa:ondrej/php -y

apt-get update ; apt-get install -y nginx mariadb-server mariadb-client  php7.3 php7.3-cli php7.3-fpm php7.3-cgi php7.3-bcmath php7.3-curl php7.3-gd php7.3-intl php7.3-json php7.3-mbstring php7.3-mysql php7.3-opcache php7.3-sqlite3 php7.3-xml php7.3-zip php7.3-snmp php7.3-json php7.3-imap php7.3-common php7.3-tidy

systemctl start nginx mariadb ; systemctl enable nginx mariadb

mysql_secure_installation

mysql -u root -p

create database db;

grant all on db.* to 'dbuser'@'localhost' identified by 'dbpass';

quit

gedit /etc/php/7.3/fpm/php.ini &>/dev/null                                                [ date.timezone ="Asia/Kolkata" cgi.fix_pathinfo=0 ]

gedit /etc/php/7.3/fpm/pool.d/www.conf &>/dev/null                          [ env[HOSTNAME] = $HOSTNAME ]

wget https://releases.wikimedia.org/mediawiki/1.33/mediawiki-1.33.0.tar.gz

tar -xvzf  mediawiki-1.33.0.tar.gz

cp -r mediawiki-1.33.0 /var/www/html/mediawiki

chown -R www-data:www-data /var/www/html/ ; chmod -R 755 /var/www/html/

gedit /etc/nginx/sites-available/default &>/dev/null

server {

   server_name www.yourdomain.com;

   access_log /var/log/nginx/yourdomain-access.log;

   error_log /var/log/nginx/yourdomain-error.log;

   root /var/www/html/mediawiki/;

   location / {

       index index.php;

       try_files $uri $uri/ /index.php$is_args$args;

   }

   location ~ \.php$ {

       include snippets/fastcgi-php.conf;

       fastcgi_pass unix:/run/php/php7.3-fpm.sock;

       fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

   }

}

nginx -t  ; echo "192.168.1.50 www.yourdomain.com" >> /etc/hosts ; systemctl restart php7.3-fpm nginx mariadb

http://www.yourdomain.com

cp -r /home/ubuntu/Downloads/LocalSettings.php /var/www/html/mediawiki/

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------