Difference between revisions of "Installing FGdb"

From FreekiWiki
Jump to navigation Jump to search
(add title)
 
(47 intermediate revisions by 8 users not shown)
Line 1: Line 1:
FGdb is actively being developed. There are some quirks in getting it up and running that will get worked out over time. For now, however, these instructions should let anyone with a FreekBox install without too much trouble. For those without a FreekBox, these instructions might also be useful. (In that case, you'll want to start with a standard woody based debian install, and you may need to run down some extra dependencies.)
+
[http://git.freegeek.org/?p=fgdb.rb;a=blob_plain;f=doc/README_FOR_APP;hb=HEAD README_FOR_APP]
  
NOTE: This still refers to a lot of MySQL stuff. We're now using PostgreSQL and will need to change all that.
+
[[Category: Coders]][[Category: FGdb]]
==Set up==
 
* Start with a FreekBox or a base server from Free Geek. ''(Since this is based on debian sarge, any sarge box should do, but there might be additional packages you need to install.)''
 
* Become root
 
* Change the hostname of your freekbox to something you want. (For the some of the examples in these instructions, we use the name 'database' as the hostname.):
 
# hostname YOUR_HOSTNAME_HERE
 
and edit /etc/hostname to match.
 
* Then edit /etc/hosts to say YOUR_HOSTNAME_HERE instead of freekbox as well.
 
* Bring up networking
 
database:/etc/apache# ifup eth0
 
 
 
==Package installation==
 
* Now update and install all the needed packages:
 
database:/etc/apache# apt-get update
 
database:/etc/apache# apt-get install smarty libphp-adodb php4 apache vim postgresql postgresql-client php4-pgsql rsync
 
(You don't really need vim in there, but I find it easier to use than the nvi or whatever is already on the FreekBox.) The above commands will pull in dependencies, depending on what you already have installed on the box.
 
* You can allow the install to reconfigure apache to use PHP or do it yourself according to instructions.
 
 
 
==Apache configuration==
 
* Now make *certain* that apache is configured correctly by editing /etc/apache/httpd.conf.
 
Uncomment the lines:
 
AddType application/x-httpd-php .php
 
AddType application/x-httpd-php-source .phps
 
Also, uncomment the line (on a sarge box, this is in /etc/apache/modules.conf):
 
LoadModule php4_module /usr/lib/apache/1.3/libphp4.so
 
Now make sure the document root is set to:
 
DocumentRoot /var/www/html
 
And be sure to include index.php in your directory index:
 
DirectoryIndex index.php index.html index.htm index.shtml index.cgi
 
* Save your changes, and then perform this SANITY CHECK:
 
database:/etc/apache# grep php httpd.conf
 
LoadModule php4_module /usr/lib/apache/1.3/libphp4.so
 
    DirectoryIndex index.php index.html index.htm index.shtml index.cgi
 
    # distribution - see http://www.php.net) will typically use:
 
    #AddType application/x-httpd-php3 .php3
 
    #AddType application/x-httpd-php3-source .phps
 
    AddType application/x-httpd-php .php
 
    AddType application/x-httpd-php-source .phps
 
 
 
If your config files doesn't look something like that, fix it before proceeding.
 
 
 
==Getting FGdb==
 
* Now check out the fgdb and fglib projects from CVS. Here's a "read-only" way:
 
 
 
Create a temporary directory (I did this in root's home):
 
database:/etc/apache# cd ~
 
database:/etc/apache# mkdir freegeekdatabase
 
database:/etc/apache# cd freegeekdatabase
 
 
 
Now check out the projects:
 
database:/etc/apache# cvs -d :pserver:anoncvs@cvs.freegeek.org:/var/lib/cvs co fgdb fglib
 
 
 
* At this point, you might want to look at the version of this documenation (in the fgdb/doc directory) to see if it's changed at all.
 
 
 
==Installing and configuring FGdb==
 
* Go to the fglib directory and run the install script
 
database:/etc/apache# cd fglib
 
database:/etc/apache# ./install.sh
 
* Go to the fgdb directory and run the install script
 
database:/etc/apache# cd ../fgdb
 
database:/etc/apache# ./install.sh
 
* The installation script will create a configuration directory called /etc/fgdb/. Go to that directory:
 
database:/etc/apache# cd /etc/fgdb
 
* There should be two files there (db.inc.php and fgdb.inc.php). If they're not there, copy them in from the conf directory of the fgdb project.
 
 
 
fgdb.inc.php:
 
<?php
 
$mode='TEST';
 
$base_url='http://flowers/fgdb';
 
$howto_base = 'http://web.freegeek.org/howto';
 
?>
 
 
 
db.inc.php:
 
<?php
 
$dbtype='mysql';
 
$hostname='localhost';
 
$userid='DB_USERNAME_HERE';
 
$passwd='DB_PASSWORD_HERE';
 
$database='DB_NAME_HERE';
 
?>
 
 
 
==Getting the database set up==
 
* After editing the above files, so that the placeholders contain your real values, the software is now installed and configured. However, you need to get the database itself set up.
 
 
 
* There are some triggers and stored procedures that require the plpgpsql language to be set up. For now, we assume that this has already been done globally. If not, you need to run this command:
 
 
 
createlang plpgpsql template1
 
 
 
* create a user with database creation priviledges, for instance. (The user does not need to be able to create new users or databases):
 
 
 
createuser fgdb
 
 
 
* create a database as that user
 
 
 
createdb fgdb
 
 
 
===Populating the database===
 
If you want to have a test database for development purposes, you will need to have created a user with your same login name, then:
 
 
 
cd sql
 
./maketestdb
 
 
 
If you want to have a production database, empty and waiting for your data, then (using the username and database name you chose):
 
 
 
psql -U username -f sql/database_schema.pg.sql database
 
for i in sql/metadata/*sql; do psql -U username -f $i database; done
 
 
 
==Configuring PHP==
 
* Edit php.ini to have the correct include_path:
 
database:/etc/apache# cd /etc/php4/apache/       
 
database:/etc/php4/apache# vi php.ini
 
include_path = ".:/var/www/php/includes:/usr/share:/usr/share/php:/usr/lib"
 
 
 
==Final touches==
 
* Now, restart apache
 
database:/etc/apache# /etc/init.d/apache restart
 
Reloading apache modules[Wed Mar 17 17:39:29 2004] [alert]
 
apache: Could not determine the server's fully qualified domain
 
name, using 127.0.0.1 for ServerName
 
* Point your browser to the database: http://YOUR_HOSTNAME_HERE/fgdb/
 
* That should show you the main page to the FGdb database application.
 

Latest revision as of 14:08, 26 November 2009