Hello,
I would first like to say thanx for the awesome documentation and FAQ's that enabled me to install/configure hobbit so quickly.
I have question now that I am new to hobbit.
I have some systems that i would like to install the hobbit client on, but they are running an older version of glibc-2.2.4 . I cant upgrade glib because of conflicts with the vendors software and support contract issues. So I was wondering if I could use bb-central with hobbit. Its sounded perfect for what I need. All it does is SSH into the remote host and pull back the data it needs to monitor. Is there a hobbit-central ??? Or does bb-central work well with hobbit ???
thanx, michael
--
Michael A. Price Performance Network Engineering NASA/GSFC Code 440.8/LMB Greenbelt, Maryland 20770 Phone: 240-684-1356 Cell: 410-507-7476 e-mail: mprice at hst.nasa.gov
On Mon, Sep 11, 2006 at 05:07:13PM -0400, Michael A. Price wrote:
I have some systems that i would like to install the hobbit client on, but they are running an older version of glibc-2.2.4 . I cant upgrade glib because of conflicts with the vendors software and support contract issues.
Is there a problem with just building (compiling) the Hobbit client on these older systems ? That would be the simplest solution.
If you download the source-version of Hobbit (the hobbit-4.2.0.tar.gz file from Sourceforge), copy it over to one of these boxes, and unpack it with "tar zxf hobbit-4.2.0.tar.gz". cd into the hobbit-4.2.0 directory and run "./configure --client", followed by "make" and "make install". That should give you a client, built for this type of system.
When you're only building the client, you do not need any of the special libraries that the Hobbit server needs. It's designed to work on an almost "bare" system.
Regards, Henrik
Henrik,
Thanx so much for getting back to me so quickly. The problem is that I am running a very, very secure version of Linux called Secure Platform from Checkpoint. They made their own gcc libraries and compiler and Make is not installed. So I downloaded "Make" and tried compiling it and when i try and run ./configure it breaks because the C-compiler is not allowed to create executables. I cant upgrade the libraries because it will break the software.
Here is the output:
[Expert at hobfw]# ./configure checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for gawk... gawk checking whether make sets $(MAKE)... no checking for gcc... gcc checking for C compiler default output file name... configure: error: C compiler cannot create executables See `config.log' for more details. [Expert at hobfw]#
Is there anyway to manually install the hobbit-client ??? or any other cool ideas you have ???
thanx, michael
Michael A. Price Performance Network Engineering NASA/GSFC Code 440.8/LMB Greenbelt, Maryland 20770 Phone: 240-684-1356 Cell: 410-507-7476 e-mail: mprice at hst.nasa.gov
Henrik Stoerner wrote:
On Mon, Sep 11, 2006 at 05:07:13PM -0400, Michael A. Price wrote:
I have some systems that i would like to install the hobbit client on, but they are running an older version of glibc-2.2.4 . I cant upgrade glib because of conflicts with the vendors software and support contract issues.
Is there a problem with just building (compiling) the Hobbit client on these older systems ? That would be the simplest solution.
If you download the source-version of Hobbit (the hobbit-4.2.0.tar.gz file from Sourceforge), copy it over to one of these boxes, and unpack it with "tar zxf hobbit-4.2.0.tar.gz". cd into the hobbit-4.2.0 directory and run "./configure --client", followed by "make" and "make install". That should give you a client, built for this type of system.
When you're only building the client, you do not need any of the special libraries that the Hobbit server needs. It's designed to work on an almost "bare" system.
Regards, Henrik
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
On 9/11/06, Michael A. Price <mprice at hst.nasa.gov> wrote:
Thanx so much for getting back to me so quickly. The problem is that I am running a very, very secure version of Linux called Secure Platform from Checkpoint.
Ouch... I remember them... :(
Do the appliances support SNMP monitoring? If they do you could try using Devmon instead of the client..... (http://devmon.sourceforge.net/)
-- --==[ Bob Gordon ]==--
I'd be interested in hearing about this too :-)
I've only taken a short look at devmon - can it be configured to use a non standard SNMP port? The SecurePlatform SNMP runs on port 260 rather than the standard 161/162.
Andy.
"Bob Gordon" <rgordonjr at gmail.com> wrote on 12/09/2006 10:21:48 a.m.:
On 9/11/06, Michael A. Price <mprice at hst.nasa.gov> wrote: Thanx so much for getting back to me so quickly. The problem is that I am running a very, very secure version of Linux called Secure Platform from Checkpoint.
Ouch... I remember them... :(
Do the appliances support SNMP monitoring? If they do you could try using Devmon instead of the client..... (http://devmon.sourceforge.net/ )
-- --==[ Bob Gordon ]==--
#####################################################################################
This email is intended for the person to whom it is addressed only. If you are not the intended recipient, do not read, copy or use the contents in any way. The opinions expressed may not necessarily reflect those of ZESPRI Group of Companies ('ZESPRI').
While every effort has been made to verify the information contained herein, ZESPRI does not make any representations as to the accuracy of the information or to the performance of any data, information or the products mentioned herein. ZESPRI will not accept liability for any losses, damage or consequence, however, resulting directly or indirectly from the use of this e-mail/attachments. #####################################################################################
On Mon, Sep 11, 2006 at 06:05:06PM -0400, Michael A. Price wrote:
Henrik,
Thanx so much for getting back to me so quickly. The problem is that I am running a very, very secure version of Linux called Secure Platform from Checkpoint. They made their own gcc libraries and compiler and Make is not installed. So I downloaded "Make" and tried compiling it and when i try and run ./configure it breaks because the C-compiler is not allowed to create executables. I cant upgrade the libraries because it will break the software.
OK, the best bet then is probably to build the binaries on another system, and link them statically. I.e. find a linux box where you can build the Hobbit client. Run the normal "./configure --client", then edit the generated Makefile and near the bottom right after where it says
Add local CFLAGS etc. settings here
add this line: CFLAGS=-static
Then run "make" as usual and "make install", then you should be able to just copy the client directory to the secured servers.
Regards, Henrik
It worked ;-)
I did just like you said ....
OK, the best bet then is probably to build the binaries on another system, and link them statically. I.e. find a linux box where you can build the Hobbit client. Run the normal "./configure --client", then edit the generated Makefile and near the bottom right after where it says
Add local CFLAGS etc. settings here
add this line: CFLAGS=-static
Then run "make" as usual and "make install", then you should be able to just copy the client directory to the secured servers.
It required some hand editing of the source codes files to link to the currect headers in the include directories. But it worked, and its working now :-)
thanx so much, michael
Michael A. Price Performance Network Engineering NASA/GSFC Code 440.8/LMB Greenbelt, Maryland 20770 Phone: 240-684-1356 Cell: 410-507-7476 e-mail: mprice at hst.nasa.gov
Henrik Stoerner wrote:
On Mon, Sep 11, 2006 at 06:05:06PM -0400, Michael A. Price wrote:
Henrik,
Thanx so much for getting back to me so quickly. The problem is that I am running a very, very secure version of Linux called Secure Platform from Checkpoint. They made their own gcc libraries and compiler and Make is not installed. So I downloaded "Make" and tried compiling it and when i try and run ./configure it breaks because the C-compiler is not allowed to create executables. I cant upgrade the libraries because it will break the software.
OK, the best bet then is probably to build the binaries on another system, and link them statically. I.e. find a linux box where you can build the Hobbit client. Run the normal "./configure --client", then edit the generated Makefile and near the bottom right after where it says
Add local CFLAGS etc. settings here
add this line: CFLAGS=-static
Then run "make" as usual and "make install", then you should be able to just copy the client directory to the secured servers.
Regards, Henrik
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
Michael,
are you running hobbit on IPSO? If so, which major version did you
get it working on? 3.8, 3.9 of 4.?
I was thinking about asking Nokia to build a package, so it is
installable through voyager.
Best regards, Arnoud
On Sep 12, 2006, at 3:30 PM, Michael A. Price wrote:
It worked ;-)
I did just like you said ....
OK, the best bet then is probably to build the binaries on another system, and link them statically. I.e. find a linux box where you can build the Hobbit client. Run the normal "./configure --client", then edit the generated Makefile and near the bottom right after where it says
Add local CFLAGS etc. settings here
add this line: CFLAGS=-static
Then run "make" as usual and "make install", then you should be
able to just copy the client directory to the secured servers.
It required some hand editing of the source codes files to link to
the currect headers in the include directories. But it worked, and its working now :-)thanx so much, michael
Michael A. Price Performance Network Engineering NASA/GSFC Code 440.8/LMB Greenbelt, Maryland 20770 Phone: 240-684-1356 Cell: 410-507-7476 e-mail: mprice at hst.nasa.gov
Henrik Stoerner wrote:
On Mon, Sep 11, 2006 at 06:05:06PM -0400, Michael A. Price wrote:
Henrik,
Thanx so much for getting back to me so quickly. The problem is
that I am running a very, very secure version of Linux called
Secure Platform from Checkpoint. They made their own gcc libraries and compiler and Make is not
installed. So I downloaded "Make" and tried compiling it and when
i try and run ./configure it breaks because the C-compiler is not
allowed to create executables. I cant upgrade the libraries
because it will break the software.OK, the best bet then is probably to build the binaries on another system, and link them statically. I.e. find a linux box where you can build the Hobbit client. Run the normal "./configure --client", then edit the generated Makefile and near the bottom right after where it says
Add local CFLAGS etc. settings here
add this line: CFLAGS=-static
Then run "make" as usual and "make install", then you should be
able to just copy the client directory to the secured servers.Regards, Henrik
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
Arnoud,
We have a couple Nokia Devices running and I have not tested them yet. I will be doing it sometime in the next 2 weeks and will let you know how it goes. I am assuming this will work because the hobbit-client has a bsd profile in it. Thats the one I will be using when I test it on the nokia's.
Do you want me to send you the statically compiled executable that i am using for Checkpoints Secure Platform?? Their is a couple tricks to get it going, but it worx great. I plan on using the same compiled executable when i test it on IPSO.
thanx, michael
Michael A. Price Performance Network Engineering NASA/GSFC Code 440.8/LMB
Arnoud Post wrote:
Michael,
are you running hobbit on IPSO? If so, which major version did you get it working on? 3.8, 3.9 of 4.?
I was thinking about asking Nokia to build a package, so it is installable through voyager.
Best regards, Arnoud
On Sep 12, 2006, at 3:30 PM, Michael A. Price wrote:
It worked ;-)
I did just like you said ....
OK, the best bet then is probably to build the binaries on another system, and link them statically. I.e. find a linux box where you can build the Hobbit client. Run the normal "./configure --client", then edit the generated Makefile and near the bottom right after where it says
Add local CFLAGS etc. settings here
add this line: CFLAGS=-static
Then run "make" as usual and "make install", then you should be able to just copy the client directory to the secured servers.
It required some hand editing of the source codes files to link to the currect headers in the include directories. But it worked, and its working now :-)
thanx so much, michael
Michael A. Price Performance Network Engineering NASA/GSFC Code 440.8/LMB Greenbelt, Maryland 20770 Phone: 240-684-1356 Cell: 410-507-7476 e-mail: mprice at hst.nasa.gov
Henrik Stoerner wrote:
On Mon, Sep 11, 2006 at 06:05:06PM -0400, Michael A. Price wrote:
Henrik,
Thanx so much for getting back to me so quickly. The problem is that I am running a very, very secure version of Linux called Secure Platform from Checkpoint. They made their own gcc libraries and compiler and Make is not installed. So I downloaded "Make" and tried compiling it and when i try and run ./configure it breaks because the C-compiler is not allowed to create executables. I cant upgrade the libraries because it will break the software.
OK, the best bet then is probably to build the binaries on another system, and link them statically. I.e. find a linux box where you can build the Hobbit client. Run the normal "./configure --client", then edit the generated Makefile and near the bottom right after where it says
Add local CFLAGS etc. settings here
add this line: CFLAGS=-static
Then run "make" as usual and "make install", then you should be able to just copy the client directory to the secured servers.
Regards, Henrik
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
Trying to find out if you got your Amazon gift. Have sent several private queries but no response. Can you contact me and let me know? I cannot track it through Amazon without information from you. -Alan
-- Alan Sparks, UNIX/Linux Systems Integration and Administration <asparks at doublesparks.net>
participants (6)
-
Andy@zespri.com
-
arnoud@koekiemonster.com
-
asparks@doublesparks.net
-
henrik@hswn.dk
-
mprice@hst.nasa.gov
-
rgordonjr@gmail.com