[OPEN-ILS-DEV] problem during Evergreen installation

2008-07-22 Thread vijay kumar
Dear List,

Thank you for your help.
Now I have downloaded Evergreen ILS packages and trying to proceed next.

I have a lot of question regarding the installation of
evergreen..because I am new with UBUNTU
1where Put all extracted file related to Evergreen

2where put my extracted Evergreen folder

3 In  the address
http://open-ils.org/dokuwiki/doku.php?id=installing_evergreen_1.2_on_ubuntu_7.10
22nd stage
shall i write Allow from 127.0.0.0/16
   or 127.0.0.1/06

shall i change ServerName eg-server:80 to ServerName  ip no.:80 0r
ServerName 127.0.0.1:80 or

I am not able to understand this line
Change the two ServerAlias directives to something appropriate:
shall i also change ServerAlias 127.0.1.1:80 to
   ServerAlias ip no.:80
before doing this apache is working properly and after this stage i am
not getting apache

4Tell me sir, what is differenence between 127.0.0.1 and 127.0.0.0
and 127.0.1.1

5 Later some command is not working properlyI pasted some
screenshots related to Evergreen
Starting OpenSRF Router
Starting OpenSRF Perl
Can't locate Unix/Syslog.pm in @INC (@INC contains: /openils/lib/perl5
/etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8
/usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8
/usr/local/lib/site_perl .) at
/openils/lib/perl5/OpenSRF/Utils/Logger.pm line 5.
BEGIN failed--compilation aborted at
/openils/lib/perl5/OpenSRF/Utils/Logger.pm line 5.
Compilation failed in require at /openils/lib/perl5/OpenSRF/System.pm line 5.
BEGIN failed--compilation aborted at
/openils/lib/perl5/OpenSRF/System.pm line 5.
Compilation failed in require.
BEGIN failed--compilation aborted.
Starting OpenSRF C (host=vijay-desktop)

[EMAIL PROTECTED]:~# sudo -u opensrf ./autogen.sh
/openils/conf/opensrf_core.xml
sudo: ./autogen.sh: command not found



I think its very difficult to give answer at once
but please guide me

Thanks a lot,
Vijay Kumar
NCSI,IISc
Bangalore
INDIA


Re: [OPEN-ILS-DEV] problem during Evergreen installation

2008-07-22 Thread Dan Wells
Hello Vijay,

1  2  You can put the downloaded/extracted files anywhere where your user has 
write permissions and which is convenient for you.  The wiki page suggests 
/eg-srcs within your home directory.  It appears as though you have done this, 
so maybe I am misunderstanding the questions?

3  You should use: 127.0.0.0/16
The number after the slash is a bit mask, so this essentially means to allow 
from 127.0.*.*, which should let you access the config scripts only from a 
browser running on the server itself.  This is a very basic security measure.

Apache allows for resolving and forwarding of requests based on server name, so 
the 'ServerName' directive should be a name, not an address, e.g.:
ServerName eg-server:80

or

ServerName eg-server.yourdomainhere.com:80 (if you have a registered name)

If using the first unregistered version, you probably only be able to access 
http://eg-server/ from a browser running on the server itself.  It should be 
noted that the instructions are generally written to allow this sort of 
self-testing, not to allow access from other machines on your network.  You 
should generally still be able to access the web server using the machine's 
external IP address, though.  

ServerAlias means nothing more than specifying additional requests to which a 
given Apache server should respond.  You can set as many as you want, e.g.:

ServerAlias server:80 server2.domain.com:80 server2:80 127.0.1.1:80

and so on.

All that being said, Apache is extremely flexible, and the best Apache settings 
are those that work :)

4  127.0.0.1 is the address for 'localhost,' that is, the current computer you 
are using.  This allows a machine to use IPv4 protocols to communicate with 
itself, which is very convenient when accessing a 'network' service locally.  
On Ubuntu, any unqualified/unregistered machine name is mapped to 127.0.1.1, 
and is mostly just another redundant way for the machine to talk to itself, and 
a stand-in for a real IP address which goes with a real (DNS registered) 
name.  For example:

ping localhost = contact ping service on 127.0.0.1
ping eg-server = contact ping service on 127.0.1.1
(if I register my machine with my DNS server)
ping eg-server.yourdomainhere.com = contact ping service on 153.106.123.1 (some 
Internet legal IP address)

5  For the Syslog error, it seems that at least one prereq was missed in your 
install.  Try:

sudo apt-get install libunix-syslog-perl

If you have other missing Perl modules, review steps 8 and 9.

Finally, this command:

sudo -u opensrf ./autogen.sh /openils/conf/opensrf_core.xml

must be run from your /openils/ directory.


Good luck,
DW

 vijay kumar [EMAIL PROTECTED] 7/22/2008 7:03 AM 
Dear List,

Thank you for your help.
Now I have downloaded Evergreen ILS packages and trying to proceed next.

I have a lot of question regarding the installation of
evergreen..because I am new with UBUNTU
1where Put all extracted file related to Evergreen

2where put my extracted Evergreen folder

3 In  the address
http://open-ils.org/dokuwiki/doku.php?id=installing_evergreen_1.2_on_ubuntu_7.10
 
22nd stage
shall i write Allow from 127.0.0.0/16
   or 127.0.0.1/06

shall i change ServerName eg-server:80 to ServerName  ip no.:80 0r
ServerName 127.0.0.1:80 or

I am not able to understand this line
Change the two ServerAlias directives to something appropriate:
shall i also change ServerAlias 127.0.1.1:80 to
   ServerAlias ip no.:80
before doing this apache is working properly and after this stage i am
not getting apache

4Tell me sir, what is differenence between 127.0.0.1 and 127.0.0.0
and 127.0.1.1

5 Later some command is not working properlyI pasted some
screenshots related to Evergreen
Starting OpenSRF Router
Starting OpenSRF Perl
Can't locate Unix/Syslog.pm in @INC (@INC contains: /openils/lib/perl5
/etc/perl /usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8
/usr/lib/perl5 /usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8
/usr/local/lib/site_perl .) at
/openils/lib/perl5/OpenSRF/Utils/Logger.pm line 5.
BEGIN failed--compilation aborted at
/openils/lib/perl5/OpenSRF/Utils/Logger.pm line 5.
Compilation failed in require at /openils/lib/perl5/OpenSRF/System.pm line 5.
BEGIN failed--compilation aborted at
/openils/lib/perl5/OpenSRF/System.pm line 5.
Compilation failed in require.
BEGIN failed--compilation aborted.
Starting OpenSRF C (host=vijay-desktop)

[EMAIL PROTECTED]:~# sudo -u opensrf ./autogen.sh
/openils/conf/opensrf_core.xml
sudo: ./autogen.sh: command not found



I think its very difficult to give answer at once
but please guide me

Thanks a lot,
Vijay Kumar
NCSI,IISc
Bangalore
INDIA


[OPEN-ILS-DEV] problem during evergreen installation

2008-07-21 Thread vijay kumar
Dear Member,
I install all step successfully upto 20th stage given in the manual of
the website of EverGreen ILS.
I am using Ubuntu 8.04 for installation of EverGreen ILS

But after 20th stage I am facing problem because after extracting
Evergreen zip file .not able to run make config command
and after extract no config file or directory was created.

I am posting screenshot of problem
[EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs# unzip
Evergreen_1.2.1.4_on_Ubuntu_7.10.zip
Archive:  Evergreen_1.2.1.4_on_Ubuntu_7.10.zip
replace Changelog.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
  inflating: Changelog.txt
   creating: Evergreen/
  inflating: Evergreen/.nvram
  inflating: Evergreen/Evergreen-s001.vmdk
  inflating: Evergreen/Evergreen-s002.vmdk
  inflating: Evergreen/Evergreen-s003.vmdk
  inflating: Evergreen/Evergreen-s004.vmdk
  inflating: Evergreen/Evergreen-s005.vmdk
  inflating: Evergreen/Evergreen-s006.vmdk
  inflating: Evergreen/Evergreen-s007.vmdk
  inflating: Evergreen/Evergreen-s008.vmdk
  inflating: Evergreen/Evergreen-s009.vmdk
  inflating: Evergreen/Evergreen-s010.vmdk
  inflating: Evergreen/Evergreen-s011.vmdk
  inflating: Evergreen/Evergreen.vmdk
 extracting: Evergreen/Evergreen.vmsd
  inflating: Evergreen/Evergreen.vmx
  inflating: Evergreen/vmware.log
replace README.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
  inflating: README.txt
[EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs# ls


[EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs/Evergreen# make config
make: *** No rule to make target `config'.  Stop.
[EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs/Evergreen#


so how can we proceed...
please guide

Thanks,
Vijay Kumar
NCSI,IISc
Bangalore
INDIA


Re: [OPEN-ILS-DEV] problem during evergreen installation

2008-07-21 Thread Dan Wells
Hello Vijay,

From the looks of it you have mistaken the Evergreen/Ubuntu virtual machine 
download for the Evergreen source download.  The link to the latest source is:

http://open-ils.org/downloads/Evergreen-ILS-1.2.2.3.tar.gz 

as linked on:

http://open-ils.org/downloads.php 

under Evergreen Source Code.  In trying to look over the page with fresh 
eyes, it is easy to see how one could make the mistake you made, especially if 
he or she was not familiar with VMWare.  Perhaps those who are able could add 
the words Virtual Machine to the VMWare section heading.  Not sure if it 
would help, but it can't hurt.

Finally, many people have had good luck with the prerequisites makefile lately 
rather than following the manual steps, so that is another avenue if you run 
into more problems.

http://open-ils.org/dokuwiki/doku.php?id=server_installation:debian_gentoo_ubuntu_prerequisites_makefile

Thanks,
DW

 vijay kumar [EMAIL PROTECTED] 7/21/2008 10:06 AM 
Dear Member,
I install all step successfully upto 20th stage given in the manual of
the website of EverGreen ILS.
I am using Ubuntu 8.04 for installation of EverGreen ILS

But after 20th stage I am facing problem because after extracting
Evergreen zip file .not able to run make config command
and after extract no config file or directory was created.

I am posting screenshot of problem
[EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs# unzip
Evergreen_1.2.1.4_on_Ubuntu_7.10.zip
Archive:  Evergreen_1.2.1.4_on_Ubuntu_7.10.zip
replace Changelog.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
  inflating: Changelog.txt
   creating: Evergreen/
  inflating: Evergreen/.nvram
  inflating: Evergreen/Evergreen-s001.vmdk
  inflating: Evergreen/Evergreen-s002.vmdk
  inflating: Evergreen/Evergreen-s003.vmdk
  inflating: Evergreen/Evergreen-s004.vmdk
  inflating: Evergreen/Evergreen-s005.vmdk
  inflating: Evergreen/Evergreen-s006.vmdk
  inflating: Evergreen/Evergreen-s007.vmdk
  inflating: Evergreen/Evergreen-s008.vmdk
  inflating: Evergreen/Evergreen-s009.vmdk
  inflating: Evergreen/Evergreen-s010.vmdk
  inflating: Evergreen/Evergreen-s011.vmdk
  inflating: Evergreen/Evergreen.vmdk
 extracting: Evergreen/Evergreen.vmsd
  inflating: Evergreen/Evergreen.vmx
  inflating: Evergreen/vmware.log
replace README.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
  inflating: README.txt
[EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs# ls


[EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs/Evergreen# make config
make: *** No rule to make target `config'.  Stop.
[EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs/Evergreen#


so how can we proceed...
please guide

Thanks,
Vijay Kumar
NCSI,IISc
Bangalore
INDIA



Re: [OPEN-ILS-DEV] problem during evergreen installation

2008-07-21 Thread Mike Rylander
On Mon, Jul 21, 2008 at 10:40 AM, Dan Wells [EMAIL PROTECTED] wrote:
 Hello Vijay,

 From the looks of it you have mistaken the Evergreen/Ubuntu virtual machine 
 download for the Evergreen source download.  The link to the latest source 
 is:

 http://open-ils.org/downloads/Evergreen-ILS-1.2.2.3.tar.gz

 as linked on:

 http://open-ils.org/downloads.php

 under Evergreen Source Code.  In trying to look over the page with fresh 
 eyes, it is easy to see how one could make the mistake you made, especially 
 if he or she was not familiar with VMWare.  Perhaps those who are able could 
 add the words Virtual Machine to the VMWare section heading.  Not sure if 
 it would help, but it can't hurt.


Good point!  Done.

 Finally, many people have had good luck with the prerequisites makefile 
 lately rather than following the manual steps, so that is another avenue if 
 you run into more problems.

 http://open-ils.org/dokuwiki/doku.php?id=server_installation:debian_gentoo_ubuntu_prerequisites_makefile

 Thanks,
 DW

 vijay kumar [EMAIL PROTECTED] 7/21/2008 10:06 AM 
 Dear Member,
 I install all step successfully upto 20th stage given in the manual of
 the website of EverGreen ILS.
 I am using Ubuntu 8.04 for installation of EverGreen ILS

 But after 20th stage I am facing problem because after extracting
 Evergreen zip file .not able to run make config command
 and after extract no config file or directory was created.

 I am posting screenshot of problem
 [EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs# unzip
 Evergreen_1.2.1.4_on_Ubuntu_7.10.zip
 Archive:  Evergreen_1.2.1.4_on_Ubuntu_7.10.zip
 replace Changelog.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
  inflating: Changelog.txt
   creating: Evergreen/
  inflating: Evergreen/.nvram
  inflating: Evergreen/Evergreen-s001.vmdk
  inflating: Evergreen/Evergreen-s002.vmdk
  inflating: Evergreen/Evergreen-s003.vmdk
  inflating: Evergreen/Evergreen-s004.vmdk
  inflating: Evergreen/Evergreen-s005.vmdk
  inflating: Evergreen/Evergreen-s006.vmdk
  inflating: Evergreen/Evergreen-s007.vmdk
  inflating: Evergreen/Evergreen-s008.vmdk
  inflating: Evergreen/Evergreen-s009.vmdk
  inflating: Evergreen/Evergreen-s010.vmdk
  inflating: Evergreen/Evergreen-s011.vmdk
  inflating: Evergreen/Evergreen.vmdk
  extracting: Evergreen/Evergreen.vmsd
  inflating: Evergreen/Evergreen.vmx
  inflating: Evergreen/vmware.log
 replace README.txt? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
  inflating: README.txt
 [EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs# ls


 [EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs/Evergreen# make config
 make: *** No rule to make target `config'.  Stop.
 [EMAIL PROTECTED]:/home/evergreen-admin/eg-srcs/Evergreen#


 so how can we proceed...
 please guide

 Thanks,
 Vijay Kumar
 NCSI,IISc
 Bangalore
 INDIA





-- 
Mike Rylander
 | VP, Research and Design
 | Equinox Software, Inc. / The Evergreen Experts
 | phone: 1-877-OPEN-ILS (673-6457)
 | email: [EMAIL PROTECTED]
 | web: http://www.esilibrary.com