MasterVitronic / fusionpbx

Automatically exported from code.google.com/p/fusionpbx
0 stars 0 forks source link

install_fusionpbx_postgres_9.2.sh script v. 0.9 #420

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Running the script from CentOS 6.4 x86-64 minimal install:

line 88:
defPUBLICHOSTNAME='voice.${DOMAINNAME}'
seems not to do what it is intended to do; consider double quotes?

line 148 uses wget:
You may want to add installing wget somewhere earlier

line 161:
yum -y install unixODBC-devel postgresql-odbc
at a first glance looks redundant as unixODBC was installed together with 
postgresql92-odbc a little earlier, line 157

If using postgresql92 you may want to create a symlink from 
/usr/pgsql-9.2/lib/psqlodbcw.so to /usr/lib/psqlodbcw.so or edit lines 169 and 
183 to read:
Driver = /usr/pgsql-9.2/lib/psqlodbcw.so

On a side note, to avoid problems,  at a very early stage of system tuning, I 
usually disable postgresql from normal repo, like:
vi /etc/yum.repos.d/CentOS-Base.repo
[base]
exclude=postgresql*
[updates]
exclude=postgresql*
and install postgresql92-contrib too

lines 333 and 335, epel repo:
You may want to use recent version -6-8 instead of -6-7
333:
rpm -Uvh 
http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
335:
rpm -Uvh 
http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

Original issue reported on code.google.com by iliah.i....@gmail.com on 11 May 2013 at 7:28

GoogleCodeExporter commented 9 years ago
Thanks for the suggestions implemented some of them and put the remainder in 
additional notes at the bottom.

Original comment by markjcrane@gmail.com on 30 Apr 2014 at 6:05