Archive for the Debian

Movable Type
Movable Type is a widely-used proprietary weblog publishing system developed by California-based Six Apart. Movable Type also supports most popular weblogging features, including user accounts, comments, categories, and themes, and is extensible through a large library of third-party plug-ins. Movable Type is free of charge for personal blogs with unlimited authors and blogs; paid [...]

 

This tutorial is how to install WordPress on Debian Linux. Installing WordPress on Debian? What for? Are there many easy ways to install WordPress on our server (Web hosting)? Eventually, We don’t need to know what distro that our server use or what operating system is. You right.
I have a “special” condition here. I need [...]

 

This tutorial about installing HTTP Server on Debian Linux.
Installing Apache HTTP Server for HTTP (Web) Server Service

apt-get install apache2

Testing HTTP Server:
Open a web browser and enter http://localhost or its IP Address http://ip-address.
Installing PHP for Apache HTTP Server

apt-get install php4
/etc/init.d/apache2 restart
vi /var/www/testphp.php

Insert this following line into testphp.php file.

<?php phpinfo(); ?>

Save this new file.
Open a web browser [...]

 

Description
This tutorial is about howto installing PostgreSQL on Debian Server.
Installing PostgreSQL

apt-get update
apt-get install pgsql

Create Language
Example plpgsql

su postgres
createlang plpgsql template1
exit

Change authentication method
We need to edit file pg_hba.conf to change authentification method for accessing PostgreSQL database.

cp /etc/postgresql/pg_hba.conf /etc/postgresql/pg_hba.confbak
vi /etc/postgresql/pg_hba.conf

Find this section

# TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD
# Database administrative login by [...]