Kali ini saya akan mengajak Sahabat menginstall LAMP, pengertian LAMP dapat Sahabat simak di Artikel sebelumnya Pengertian LAMP. OS Linux yang saya gunakan adalah CentOS 6.6, dan untuk install LAMP saya pastikan di komputer Sahabat sudah terinstall CentOS 6.x. Oke langsung saja kita kerjakan...
1. Install Apache
Apache adalah sebagian dari banyak Web Server, ntuk meng-install Apache berikut ini command-nya :
# yum install httpd -y
Setelah itu Start Apache, yang setelah di Install dengan command :
# service httpd start
# chkconfig httpd on
Untuk meng-izinkan Apache pada port 80, kita harus mengedit file pada /etc/sysconfig/iptables
# nano /etc/sysconfig/iptables
Dan tambahkan, code ini di lines :
-A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
Setelah itu, Restart iptables. Dengan command :
# service iptables restart
Test Apache :
Dengan cara, mengetikan http://localhost/ atau http://server-ip-anda/ , pada Browser. Dan akan muncul tampilan sebagai berikut :
3. Install MySQL
MySQL, adalah layanan Database untuk sebuah Website. Untuk meng-install MySQL, di perlukan command :
# yum install mysql mysql-server -y
Setelah itu, Start MySQL dengan command :
# service mysqld start
# chkconfig mysqld on
Setup MySQL Root Password
Pada awal-nya, MySQL Root User tidak mendapatkan password. Maka-nya agar lebih aman, kita beri password, Dengan command :
# mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MySQL to secure it, we'll need the current
password for the root user. If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none): ## Enter ##
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.
Set root password? [Y/n] ## Enter ##
New password: ## Enter new password ##
Re-enter new password: ## Re-enter new password ##
Password updated successfully!
Reloading privilege tables..
... Success!
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] ## Enter ##
... 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] ## Enter ##
... 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] ## Enter ##
- 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] ## Enter ##
... 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. Install PHP
PHP (Hypertext Preprocessor) bahasa yang sering digunakan dalam membuat sebuah Website. PHP ini juga dapat di letakan pada script HTML. Command yang di butuhkan untuk menginstall PHP :
# yum install php -y
Test PHP
Untuk mengetest PHP yang tadi kita Install, kita harus membuat file di dalam Root folder /var/www/html/ :
nano /var/www/html/phptest.php
Dan tambahkan, ini pada line phptest.phpIni PHP Test.
Setelah itu, Restart apache dengan command :
# service httpd restart
Untuk mengetest berhasil atau tidak, ketik http://localhost/phptest.php atau http://server-ip-anda/phptest.php jika berhasil tampilannya sebagai berikut :
Jika anda ingin menambahkan MySQL Support pada PHP-nya, anda harus menginstall “php-mysql” dengan command berikut :
# yum install php-mysql -y
Install PhpMyAdmin
PhpMyAdmin adalah tool untuk me-management MySQL Database. Tapi, PhpMyAdmin tidak ada pada Repository Official CentOS, maka-nya kita harus menginstall EPEL Repository untuk mendapatkan PhpMyAdmin.
Baca juga : Cara Install EPEL Repository di CentOS 6.x
Sekarang, cara install PhpMyAdmin, dengan command :
# yum install phpmyadmin -y
Setelah meng-install, kita konfigurasi PhpMyAdmin-nya, dengan command :
# nano /etc/httpd/conf.d/phpMyAdmin.conf
Alias /phpMyAdmin /usr/share/phpMyAdmin
Alias /phpmyadmin /usr/share/phpMyAdmin
#<Directory /usr/share/phpMyAdmin/>
# <IfModule mod_authz_core.c>
# # Apache 2.4
# Require local
# </IfModule>
# <IfModule !mod_authz_core.c>
# # Apache 2.2
# Order Deny,Allow
# Deny from All
# Allow from 127.0.0.1
# Allow from ::1
# </IfModule>
#</Directory>
Buka “config.inc.php” file dan ubah dari ‘cookie’ menjadi ‘http’.
# cp /usr/share/phpMyAdmin/config.sample.inc.php /usr/share/phpMyAdmin/config.inc.php
# nano /usr/share/phpMyAdmin/config.inc.php
Ubah menjadi ‘http’ :
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'http';
Restart Apache-nya :
# service httpd restart
Sekarang kita Test PhpMyAdmin-nya, dengan cara ketikan http://localhost/phpmyadmin/ atau http://server-ip-anda/phpmyadmin/ pada Browser.
Demikian Cara install LAMP di CentOS 6.x semoga artikel ini membantu Sahabat semua..
No comments:
Post a Comment