Pengen Punya Laptop ASUS VIVOBOOK ?

Install LAMP di VPS CentOS

Install LAMP di VPS CentOSLAMP adalah sekelompok perangkat lunak open source yang digunakan untuk mendapatkan dan menjalankan server web. LAMP merupakan singkatan dari Linux, Apache, MySQL, dan PHP. Berikut adalah cara Install LAMP di VPS CentOS :

1. Update terlebih dahulu CentOS anda..

yum update

2. Langkah selanjutnya menginstall Apache, untuk menginstall jalankan perintah berkut :

sudo yum install httpd

setelah terinstall apache,Jalankan dengan perintah :

sudo service httpd start

buka browser internet anda kemudian ketikan http://ipserver_anda. misalkan : http://123.45.67.89 dan bila muncul tampilan seperti gambar dibawah ini maka Apache sudah terinstall dan dapat berjalan dengan benar.

Install LAMP di VPS CentOS

Lalu bagaimana kalau saya tidak tahu ip server saya??

Ketikan perintah berikut ini :

ifconfig eth0 | grep inet | awk ‘{ print $2 }’

3. Langkah berikutnya yaitu install MYSQL, untuk menginstallnya anda cukup mengetikan perintah berikut ini

sudo yum install mysql-server

Selama penginstalan anda akan diminta untuk memasukan password root, Setelah terinstall anda harus mengaktifkannya, ketik perintah dibawah ini

sudo service mysqld start.

Setelah itu jalankan perintah berikut :

sudo /usr/bin/mysql_secure_installation

dan anda akan diminta untuk memasukan password root anda saat ini. langsung saja tekan enter

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

Selanjutnya pilih “Y” untuk semua pilihan. Pada akhirnya, MySQL akan kembali dan menerapkan perubahan baru

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!

4. Selanjutnya install PHP, ketikan perintah berikut untuk menginstall PHP :

sudo yum install php php-mysql

Pilih “yes” dan “yes” dan installisasi php akan berjalan sendiri sampai selesai

Selanjutnya ketikan perintah berikut :

yum search php-

dan hasil penampakannya adalah sebagai berikut :

php-bcmath.x86_64 : A module for PHP applications for using the bcmath library
php-cli.x86_64 : Command-line interface for PHP
php-common.x86_64 : Common files for PHP
php-dba.x86_64 : A database abstraction layer module for PHP applications
php-devel.x86_64 : Files needed for building PHP extensions
php-embedded.x86_64 : PHP library for embedding in applications
php-enchant.x86_64 : Human Language and Character Encoding Support
php-gd.x86_64 : A module for PHP applications for using the gd graphics library
php-imap.x86_64 : A module for PHP applications that use IMAP

Install Module :

sudo yum install name of the module

Selesaikan installan dengan perintah berikut, agar php dan apache dapat berjalan otomatis ketika server melakukan boots

sudo chkconfig httpd on
sudo chkconfig mysqld on

5. Langkah terakhir yaitu Pastikan PHP sudah berjalan dengan benar di server anda

yaitu dengan cara membuat sebuah file baru dengan nama info.php. Lakukan perintah berikut ini.

nano /var/www/info.php

kemudian isi file info.php tadi dengan ketikan

<?php
phpinfo();
?>

Simpan dan keluar dari editor nano.(Ctrl+x >> Y >> enter)

Lakukan restart apache.

sudo service httpd restart

dan untuk mengujinya silahkan masuk melalui browser internet anda ketikan http://ipserver_anda/info.php dan akan muncul penampakan seperti gambar dibawah ini.

Install LAMP di VPS CentOS

 

Leave a Reply

Your email address will not be published. Required fields are marked *

*