Test MySQL Under Console

Barangkali mudah bila melakukan test instalasi Apache, MySQL , PHP lewat Browser. Nah kali ini akan kita lakukan test sederhana untuk mengecek apakah proses instalasi komponen tersebut sudah benar atau belom melalu command line.
1. Jalankan Apache
[root@taufik ~]# /etc/rc.d/init.d/apache start
/etc/rc.d/init.d/apache start: httpd started
2. Jalankan MySQL
[root@taufik ~]# /etc/rc.d/init.d/mysql start
Starting MySQL. [OK]
3. Buat script PHP sederhana untuk mengecek mengecek koneksi dengan mySQL sebagai berikut.
[root@taufik ~]#vi konek.php
< ?php $link = mysql_connect('localhost','sqladmin','mysqladmin'); if (!$link) { die('Could not connect to MySQL: ' . mysql_error()); } echo 'Connection OK'; mysql_close($link); ? >

:wq!

4. Test script php tersebut
[root@taufik htdocs]# php konek.php
Connection OK

Nah
kalau udah ada pesan seperti itu berarti mySQL udah bisa dipake buat Database Server.

Selamat Mencoba..!

Comments

Popular Posts