[Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7

[Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7 - Hallo sahabat Another Stuff, Pada Artikel yang anda baca kali ini dengan judul [Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7, kami telah mempersiapkan artikel ini dengan baik untuk anda baca dan ambil informasi didalamnya. mudah-mudahan isi postingan Artikel Admin Server, yang kami tulis ini dapat anda pahami. baiklah, selamat membaca.

Judul : [Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7
link : [Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7

Baca juga


[Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7

Server database adalah sebuah server yang dapat menyimpan sebuah basis data yang diperlukan untuk kebutuhan tertentu seperti untuk program, untuk data-data disebuah organisasi/sekolah dan perusahaan. Kita dapat membuat sebuah server database kita sendiri, pada sistem operasi CentOS 7, untuk membuat server database, pada server tersebut kita memerlukan aplikasi yang dapat menyediakan layanan database.

Aplikasi penyedia database yang saya bahas kali ini adalah MySQL, aplikasi ini terdapat pada repositori SCLo, maka sebelum dapat menginstall MySQL kita harus menginstall repo SCLo pada server yang akan kita konfigurasi. Ini adalah sedikit informasi tentang server yang saya konfigurasi :
    OS:Linux CentOS 7 x64
    IP Address (enp0s3):192.168.56.50
    Domain:data.centos.dz
Pertama yang kita lakukan adalah konfigurasi IP Address agar server dapat terhubung dengan jaringan dan juga terhubung dengan Internet. Edit file konfigurasi /etc/sysconfig/network-scripts/ifcfg-enp0s3
[root@dz-mysql ~]# vi /etc/sysconfig/network-scripts/ifcfg-enp0s3 
  • Edit dan tambahkan beberapa opsi, dan sesuaikan IP Address dengan jaringan yang anda gunakan.
  • ONBOOT=yes
    BOOTPROTO=static
    IPADDR=192.168.56.50
    NETMASK=255.255.255.0
    GATEWAY=192.168.56.1
    DNS1=192.168.56.50
    DNS2=8.8.8.8

Repo SCLo

Kita akan mengaktifkan repo SCLo pada server ini. Langsung saja install repo sclo pada server dengan perintah ini :
[root@dz-mysql ~]# yum -y install centos-release-scl-rh centos-release-scl

Install MySQL

Pertama kita install paket aplikasi MySQL yang ada direpositori centos SCLo.
[root@dz-mysql ~]# yum --enablerepo=centos-sclo-rh -y install rh-mysql57-mysql-server
Load variable dari aplikasi MySQL karena lokasinya ada di directory /opt agar dapat digunakan.
[root@dz-mysql ~]# scl enable rh-mysql57 bash
Untuk melihat versi dari MySQL yang terinstall.
[root@dz-mysql ~]# mysql -V
mysql Ver 14.14 Distrib 5.7.16, for Linux (x86_64) using EditLine wrapper
Kemudian untuk mengetahui lokasi binary dari MySQL.
[root@dz-mysql ~]# which mysql
/opt/rh/rh-mysql57/root/usr/bin/mysql
Agar MySQL dapat berjalan saat server dinyalakan kita buat script dibawah ini.
[root@dz-mysql ~]# vi /etc/profile.d/rh-mysql57.sh
  • Tambahkan script dibawah ini.
  • #!/bin/bash

    source /opt/rh/rh-mysql57/enable
    export X_SCLS="`scl enable rh-mysql57 'echo $X_SCLS'`"
Kemudian kita edit file konfigurasi dari mysql.
[root@dz-mysql ~]# nano /etc/opt/rh/rh-mysql57/my.cnf.d/rh-mysql57-mysql-server.cnf 
  • Tambahkan script ini dibagian [mysqld] untuk menentukan character set.
  • [mysqld]
    datadir=/var/opt/rh/rh-mysql57/lib/mysql
    socket=/var/lib/mysql/mysql.sock
    log-error=/var/opt/rh/rh-mysql57/log/mysql/mysqld.log
    pid-file=/var/run/rh-mysql57-mysqld/mysqld.pid
    character-set-server=utf8
Jalankan dan enable layanan mysql.
[root@dz-mysql ~]# systemctl start rh-mysql57-mysqld
[root@dz-mysql ~]# systemctl enable rh-mysql57-mysqld
Kita jalankan setup mysql untuk mengatur beberapa pengaturan dasar.
[root@dz-mysql ~]# mysql_secure_installation 
  • Tekan y untuk mengaktifkan pengecekan kerumitan password.
  • Securing the MySQL server deployment.

    Connecting to MySQL using a blank password.

    VALIDATE PASSWORD PLUGIN can be used to test passwords
    and improve security. It checks the strength of password
    and allows the users to set only those passwords which are
    secure enough. Would you like to setup VALIDATE PASSWORD plugin?

    Press y|Y for Yes, any other key for No: y
  • Pilih level kerumitan password yang ingin dibuat. 0, 1 ,2
  • There are three levels of password validation policy:

    LOW Length >= 8
    MEDIUM Length >= 8, numeric, mixed case, and special characters
    STRONG Length >= 8, numeric, mixed case, special characters and dictionary file

    Please enter 0 = LOW, 1 = MEDIUM and 2 = STRONG: 2
  • Ketikan password sesuai kriteria kerumitan yang anda pilih sebelumnya. Dan tekan y untuk meyakinkannya.
  • Please set the password for root here.

    New password: #password

    Re-enter new password: #password

    Estimated strength of the password: 100
    Do you wish to continue with the password provided?(Press y|Y for Yes, any other key for No) : y
  • Tekan y untuk menghapus user anonim.
  • By default, a MySQL installation has an anonymous user,
    allowing anyone to log into MySQL without having to have
    a user account created for them. This is intended only for
    testing, and to make the installation go a bit smoother.
    You should remove them before moving into a production
    environment.

    Remove anonymous users? (Press y|Y for Yes, any other key for No) : y
    Success.
  • Tekan y agar user root hanya dapat diakses oleh localhost.
  • Normally, root should only be allowed to connect from
    'localhost'. This ensures that someone cannot guess at
    the root password from the network.

    Disallow root login remotely? (Press y|Y for Yes, any other key for No) : y
    Success.
  • Tekan y untuk menghapus database test.
  • By default, MySQL comes with a database named 'test' that
    anyone can access. This is also intended only for testing,
    and should be removed before moving into a production
    environment.


    Remove test database and access to it? (Press y|Y for Yes, any other key for No) : y
    - Dropping test database...
    Success.

    - Removing privileges on test database...
    Success.
  • Tekan tombol y untuk mereload privileges.
  • Reloading the privilege tables will ensure that all changes
    made so far will take effect immediately.

    Reload privilege tables now? (Press y|Y for Yes, any other key for No) : y
    Success.

    All done!

Testing Database

Masuk pada terminal database mysql.
[root@dz-mysql ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.7.16 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>
Kita coba buat sebuah user baru.
mysql> create user dzikra identified by 'Password123!';
Query OK, 0 rows affected (0,00 sec)
Untuk melihat daftar user yang ada di server database ini.
mysql> select user,host from mysql.user;
+-----------+-----------+
| user | host |
+-----------+-----------+
| dzikra | % |
| mysql.sys | localhost |
| root | localhost |
+-----------+-----------+
3 rows in set (0,00 sec)
Testing membuat sebuah database baru.
mysql> create database dzdata;
Query OK, 1 row affected (0,00 sec)
Gunakan database tersebut untuk mengisinya dengan beberapa table.
mysql> use dzdata;
Database changed
mysql> create table dztable (no int, nama text);
Query OK, 0 rows affected (0,06 sec)
Isi table dengan beberapa data.
mysql> insert into dztable (no, nama) values (1,'dzikra');
Query OK, 1 row affected (0,01 sec)

mysql> insert into dztable (no, nama) values (2,'fathin');
Query OK, 1 row affected (0,00 sec)
Untuk melihat isi table.
mysql> select * from dztable;
+------+--------+
| no | nama |
+------+--------+
| 1 | dzikra |
| 2 | fathin |
+------+--------+
2 rows in set (0,00 sec)
Hapus seluruh database dan table tadi.
mysql> drop table dztable;
Query OK, 0 rows affected (0,00 sec)

mysql> drop database dzdata;
Query OK, 0 rows affected (0,00 sec)

mysql> select * from dztable;
ERROR 1046 (3D000): No database selected



Demikianlah Artikel [Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7

Sekianlah artikel [Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7 kali ini, mudah-mudahan bisa memberi manfaat untuk anda semua. baiklah, sampai jumpa di postingan artikel lainnya.

Anda sekarang membaca artikel [Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7 dengan alamat link https://anothers-stuff.blogspot.com/2017/05/lab-97-membuat-server-database-dengan.html
close
==Close==