Pengen Punya Laptop ASUS VIVOBOOK ?

Install LAMP di VPS Ubuntu

 

Install LAMP di Ubuntu

LAMP 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 Ubuntu khususnya ubuntu 12.04 :

1. Pastikan repository ubuntu anda sudah terupadate.

apt-get update

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

apt-get install apache2

setelah terinstall apache, 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.

Lalu bagaimana kalau saya tidak tahu ip server saya??

Ketikan perintah berikut ini :

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

Install LAMP di Debian

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

sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql

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

sudo mysql_install_db

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...

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

sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt

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

dengan editor nano edit file dir.conf untuk menambahkan file index.php

sudo nano /etc/apache2/mods-enabled/dir.conf

Sesuaikan dengan isian data file dir.conf dibawah ini :

<IfModule mod_dir.c>
          DirectoryIndex index.php index.html index.cgi index.pl 
index.php index.xhtml index.htm

</IfModule>

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

Selanjutnya ketikan perintah berikut :

apt-cache search php5-

dan hasil penampakannya adalah sebagai berikut :

php5-cgi - server-side, HTML-embedded scripting language (CGI binary)
php5-cli - command-line interpreter for the php5 scripting language
php5-common - Common files for packages built from the php5 source
php5-curl - CURL module for php5
php5-dbg - Debug symbols for PHP5
php5-dev - Files for PHP5 module development
php5-gd - GD module for php5
php5-gmp - GMP module for php5
php5-ldap - LDAP module for php5
php5-mysql - MySQL module for php5
php5-odbc - ODBC module for php5
php5-pgsql - PostgreSQL module for php5
php5-pspell - pspell module for php5
php5-recode - recode module for php5
php5-snmp - SNMP module for php5
php5-sqlite - SQLite module for php5
php5-tidy - tidy module for php5
php5-xmlrpc - XML-RPC module for php5
php5-xsl - XSL module for php5
php5-adodb - Extension optimising the ADOdb database abstraction library
php5-auth-pam - A PHP5 extension for PAM authentication
[...]

Install Module :

sudo apt-get install name of the module

Selesaikan installan dengan me-restart apache

service apache2 restart

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)

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

Install WordPress di VPS Ubuntu

Leave a Reply

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

*