Chrome Pointer
Home » , , , , , , , , » Cara Install Linux Apache MySQL PHP (LAMP) Centos 6

Cara Install Linux Apache MySQL PHP (LAMP) Centos 6

Pengertian LAMP

Cara Install Linux Apache MySQL PHP (LAMP) Centos 6 - LAMP kepanjangan dari Linux Apache MySQL PHP/Perl/Phyton, yaitu standart server yang biasanya untuk menjalankan sebuah aplikasi / service berbasis Web secara lengkap.
Komponen LAMP adalah:
  • Linux sebagai Sistem Operasi
  • Apache sebagai Web Server
  • MySQL sebagai Sistem Basisdata
  • Perl/PHP/Phyton sebagai bahasa pemrograman yang dipakai

 Konfigurasi LAMP

1. Install Apache
Apache adalah opensource dari web server yang biasa dipakai di server di dunia. Untuk install Apache menggunakan perintah:

sudo yum install httpd
sudo service httpd start

Untuk cek apakah apache sudah terinstall dengan baik tuliskan di browser http://ipaddress (contoh: http://192.168.1.1)

2. Install MySQL
MySQL adalah system basis data yang sangat bagus untuk manajemen database. Untuk install MySQL menggunakan perintah:

sudo yum install mysql-server
sudo service mysqld start

Setelah selesai proses installasi selanjutnya adalah setting password root mysql:

sudo /usr/bin/mysql_secure_installation

Pertama kali MySQL terinstall password tidak terisi atau kosong maka langsung tekan enter saja:

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Kemudian muncul pernyataan apakah anda ingin setting password anda, jika ya kembali ke tampilan konsole dan ketik "Y" lalu ikuti langkah selanjutnya.
CentOS akan memberikan beberapa pertanyaan  yang meminta jawaban ya atau tidak, untuk mempermudah pilih ya semua.

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? [Y/n] 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? [Y/n] 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? [Y/n] 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? [Y/n] y
... Success!

Cleaning up...

All done! If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!



3. Install PHP
PHP adalah bahasa pemrograman biasanya berbasis web yang sangat multiguna. Untuk menginstall PHP gunakan perintah:

sudo yum install php php-mysql

Kemudian buat otomatis menjalankan service ketika server kita hidup
chksudo chkconfig httpd on
sudo chkconfig mysqld on

Dan server Anda telah terinstall LAMP.
Semoga membantu..

Ditulis Oleh : Unknown ~ Admin mastopix.blogspot.com

mastopix.blogspot.com Anda sedang membaca artikel tentang Cara Install Linux Apache MySQL PHP (LAMP) Centos 6. Oleh Admin, Anda diperbolehkan mengcopy paste atau menyebar-luaskan artikel ini, namun jangan lupa untuk meletakkan link dibawah ini sebagai sumbernya. Terima kasih...

Share artikel ke: Facebook Twitter Google+ Linkedin Technorati Digg

2 comments:

  1. This comment has been removed by the author.

    ReplyDelete
  2. Arikel yang mudah dipahami dan di cerna saya test untuk vps saya makasih informasinya

    ReplyDelete

Powered by Blogger.