Versi
Web Server yang sudah tersedia pada Slackware 12.2, yaitu:
MySQL 5.0.67
Apache 2.0
PHP Version 5.2.8
MySQL 5.0.67
Apache 2.0
PHP Version 5.2.8
Install
MySQL:
Pertama-tama untuk mengkonfigurasi MySQl di Slackware
Berikan hak akses untuk eksekusi rc.mysqld dengan cara:
root@tundra:~# chmod +x /etc/rc.d/rc.mysqld
Pertama-tama untuk mengkonfigurasi MySQl di Slackware
Berikan hak akses untuk eksekusi rc.mysqld dengan cara:
root@tundra:~# chmod +x /etc/rc.d/rc.mysqld
Memberikan
“grant privileges” kepada database MySQL
root@tundra:~# mysql_install_db –user=mysql
root@tundra:~# mysql_install_db –user=mysql
Mengubah
hak akses kepemilikan dari direktori
/var/lib/mysql/mysql
root@tundra:~# chown -R mysql:mysql /var/lib/mysql/mysql
root@tundra:~# chmod -R 755 /var/lib/mysql/mysql
root@tundra:~# chown -R mysql:mysql /var/lib/mysql/mysql
root@tundra:~# chmod -R 755 /var/lib/mysql/mysql
Sekarang
jalankan Service MySQL dengan cara:
root@tundra:~# /etc/rc.d/rc.mysqld start
root@tundra:~# /etc/rc.d/rc.mysqld start
Sekarang
Anda bisa menggunakan database MySQL
root@tundra:~# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.67 Source distribution
root@tundra:~# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.67 Source distribution
Type
‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the buffer.
mysql>
Install
Apache:
root@tundra:~# chmod 755 /etc/rc.d/rc.httpd
root@tundra:~# /usr/sbin/apachectl -k start
root@tundra:~# chmod 755 /etc/rc.d/rc.httpd
root@tundra:~# /usr/sbin/apachectl -k start
Untuk
menjalankan service apache
root@tundra:~# /usr/sbin/apachectl -k start
root@tundra:~# /usr/sbin/apachectl -k start
Untuk
merestart service apache
root@tundra:~# /usr/sbin/apachectl -k restart
root@tundra:~# /usr/sbin/apachectl -k restart
Untuk
mematikan service apache
root@tundra:~# /usr/sbin/apachectl -k stop
root@tundra:~# /usr/sbin/apachectl -k stop
Sekarang
coba menjalankan apache pada browser http://localhost/
It works!
Sekarang Apache Anda sudah berjalan
It works!
Sekarang Apache Anda sudah berjalan
Edit
lah baris sibawah ini dengan menambahkan index.php:
<IfModule
dir_module>
DirectoryIndex index.html index.php
</IfModule>
Gunanya untuk mengaktifkan index.php atau index.html pada halaman pertama website
DirectoryIndex index.html index.php
</IfModule>
Gunanya untuk mengaktifkan index.php atau index.html pada halaman pertama website
Hapuslah
pagar pada baris
Include /etc/httpd/mod_php.conf
Gunanya untuk meng-enable php
Include /etc/httpd/mod_php.conf
Gunanya untuk meng-enable php
Sekarang
buatlah file tes.php dengan editor kesayangan Anda:
root@tundra:/# vim /var/www/htdocs/tes.php
<?PHP
phpinfo();
?>
Lakukan penyimpanan hasil konfigurasi dengan perintah (:wq)
root@tundra:/# vim /var/www/htdocs/tes.php
<?PHP
phpinfo();
?>
Lakukan penyimpanan hasil konfigurasi dengan perintah (:wq)
Setelah
itu jalankan file tes.php pada mozilla firefox, tuliskan URLnya
seperti dibawah ini:
Sekarang
MySQL, Apache dan PHP Anda sudah dapat digunakan. Ini adalah web
server pada sistem Slackware
Selamat Mencoba
Selamat Mencoba