Install WordPress di Debian 11 dgn Apache2 MariaDB PHP7

From OnnoWiki
Jump to navigation Jump to search

Bagi anda yang berminat untuk membuat sendiri Server Blog dapat menggunakan Wordpress.

Pertama-tama siapkan beberapa fasilitas pendukung Wordpress seperti MySQL-server, PHP dll, antara lain dapat di install melalui perintah

Untuk Debian 11


Install Apache2

su
apt -y install apache2
# sudo ufw allow 'Apache'


Install MariaDB

Instalasi

su
apt -y install mariadb-client mariadb-server

Update user root

# mysql -u [user] -p
su
mysql -u root -p
# update mysql.user set plugin=’’ where user=’root’;


ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyN3wP4ssw0rd';
ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';
flush privileges;
exit;


Restart

systemctl restart mysql



Install PHP 7.4

su
apt update
apt -y install php7.4

Install extension

su
apt -y install php7.4-common php7.4-mysql php7.4-xml php7.4-xmlrpc \
php7.4-curl php7.4-gd php7.4-imagick php7.4-cli php7.4-dev \
php7.4-imap php7.4-mbstring php7.4-opcache php7.4-soap \
php7.4-zip php7.4-cli php7.4-intl \
imagemagick git unzip zip libgd-dev libapache2-mod-php libphp-adodb


Edit (tergantung kebutuhan)

su
vi /etc/php/7.4/apache2/php.ini
upload_max_filesize = 100M
post_max_size = 48M
memory_limit = 512M
max_execution_time = 600
max_input_vars = 3000
max_input_time = 1000

Restart apache2

su
systemctl restart apache2.service

Install Wordpress

Ambil source code Wordpress di

Atau bagi anda yang ingin menggunakan Wordpress berbahasa Indonesia dapat mengambil source code-nya di

Download & copy

wget http://wordpress.org/latest.tar.gz
cp latest.tar.gz /var/www/html/
cd /var/www/html
tar zxvf latest.tar.gz
cd /var/www/html/wordpress
chmod -Rf 777 /var/www/html/wordpress/wp-content/

Konfigurasi Wordpress untuk menggunakan database server MySQL

cd /var/www/html/wordpress
cp wp-config-sample.php wp-config.php
vi wp-config.php
define('DB_NAME', 'wordpress');
define('DB_USER', 'wordpress');
define('DB_PASSWORD', 'wordpress');
define('DB_HOST', 'localhost');

Siapkan database untuk Wordpress, disini akan digunakan database dengan nama wordpress, user database dengan nama wordpress dan password untuk akses database adalah wordpress.

Jika password Root MySQL database sudah di set maka kita dapat langsung mengkonfigurasi MySQL menggunakan perintah

# mysql -u root -p
Enter password:
create database wordpress;
grant INSERT,SELECT on root.* to wordpress@localhost;
grant CREATE, INSERT, SELECT, DELETE, UPDATE on wordpress.* to wordpress@localhost identified by 'wordpress';
grant CREATE, INSERT, SELECT, DELETE, UPDATE on wordpress.* to wordpress identified by 'wordpress';
exit

Jika masih belajar dapat menggunakan perintah


# mysql -u root
SET PASSWORD FOR root@localhost=PASSWORD('123456');
CREATE DATABASE wordpress DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
grant ALL on root.* to wordpress@localhost;
GRANT ALL ON wordpress.* TO 'wordpress'@'localhost' IDENTIFIED BY 'wordpress';
grant ALL on wordpress.* to wordpress identified by 'wordpress';
exit

Restart Web Server

su
systemctl restart apache2
systemctl restart mysql


Akses Web Wordpress ke IP address statik dari Web Server anda. Sangat tidak di sarankan ungtuk mengakses ke localhost, kecuali jika Web Wordpress hanya digunakan untuk komputer anda sendiri tidak untuk orang lain. Cara mengakses-nya adalah,

http://ip-address-web-server/wordpress
install.php

Masukan Data berikut

Judul Situs 	
Nama Pengguna 	
Kata sandi, dua kali
E-mail Anda

Klik pada "Install Wordpress"

Kita dapat login

http://ip-address-web-server/wordpress/wp-login.php

Youtube


Pranala Menarik