Difference between revisions of "Freebsd FusionPBX Install -dead"
From FusionPBX
(→PgSQL Setup) |
|||
Line 13: | Line 13: | ||
make update-plist | make update-plist | ||
make install clean | make install clean | ||
+ | |||
+ | ==NginX Setup== | ||
+ | |||
+ | ==Apache Setup== | ||
+ | |||
+ | ==Lighttpd Setup== | ||
==PgSQL Setup== | ==PgSQL Setup== |
Revision as of 17:15, 11 September 2010
FusionPbx install on FreeBSD
Grab the devport from here:
http://dl.dropbox.com/u/152504/fusionpbx-svn.tgz
tar xzvf fusionpbx-svn.tgz in a directory like /home/work
cd /home/work/fusionpbx-svn && make svn-clean
make svn make svn-tar make update-plist make install clean
NginX Setup
Apache Setup
Lighttpd Setup
PgSQL Setup
su pgsql
initdb -D /usr/local//pgsql/data
postmaster -D /usr/local/pgsql/data >logfile 2>&1 &
createuser -s -e FusionPBX
createdb -O FusionPBX FusionPBX
psql -d FusionPBX -U FusionPBX
alter user FusionPBX with password 'pbx2010' or any passwd you want;
exit from su back to root
/usr/local/etc/rc.d/postgresql restart
su pgsql
psql -f /usr/local/www/fusionpbx/includes/install/sql/pgsql.sql FusionPBX