Judul : [Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7
link : [Lab 9.7] Membuat server Database dengan MySQL pada CentOS 7
[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 |
[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-serverLoad variable dari aplikasi MySQL karena lokasinya ada di directory /opt agar dapat digunakan.
[root@dz-mysql ~]# scl enable rh-mysql57 bashUntuk melihat versi dari MySQL yang terinstall.
[root@dz-mysql ~]# mysql -VKemudian untuk mengetahui lokasi binary dari MySQL.
mysql Ver 14.14 Distrib 5.7.16, for Linux (x86_64) using EditLine wrapper
[root@dz-mysql ~]# which mysqlAgar MySQL dapat berjalan saat server dinyalakan kita buat script dibawah ini.
/opt/rh/rh-mysql57/root/usr/bin/mysql
[root@dz-mysql ~]# vi /etc/profile.d/rh-mysql57.sh
- Tambahkan script dibawah ini.
#!/bin/bashKemudian kita edit file konfigurasi dari mysql.
source /opt/rh/rh-mysql57/enable
export X_SCLS="`scl enable rh-mysql57 'echo $X_SCLS'`"
[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]Jalankan dan enable layanan mysql.
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
[root@dz-mysql ~]# systemctl start rh-mysql57-mysqldKita jalankan setup mysql untuk mengatur beberapa pengaturan dasar.
[root@dz-mysql ~]# systemctl enable rh-mysql57-mysqld
[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
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
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
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.
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.
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.
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 -pKita coba buat sebuah user baru.
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>
mysql> create user dzikra identified by 'Password123!';Untuk melihat daftar user yang ada di server database ini.
Query OK, 0 rows affected (0,00 sec)
mysql> select user,host from mysql.user;Testing membuat sebuah database baru.
+-----------+-----------+
| user | host |
+-----------+-----------+
| dzikra | % |
| mysql.sys | localhost |
| root | localhost |
+-----------+-----------+
3 rows in set (0,00 sec)
mysql> create database dzdata;Gunakan database tersebut untuk mengisinya dengan beberapa table.
Query OK, 1 row affected (0,00 sec)
mysql> use dzdata;Isi table dengan beberapa data.
Database changed
mysql> create table dztable (no int, nama text);
Query OK, 0 rows affected (0,06 sec)
mysql> insert into dztable (no, nama) values (1,'dzikra');Untuk melihat isi table.
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)
mysql> select * from dztable;Hapus seluruh database dan table tadi.
+------+--------+
| no | nama |
+------+--------+
| 1 | dzikra |
| 2 | fathin |
+------+--------+
2 rows in set (0,00 sec)
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