Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Test and Performance Tools Platform (TPTP) » Agent Controller fails to start on linux
Agent Controller fails to start on linux [message #129848] Wed, 07 May 2008 16:01 Go to next message
Eclipse UserFriend
Originally posted by: cvkmurthy.hotmail.com

Experts,

I am getting following error when I start Agent Controller on linux.
Configuration of the machine is as follows. Agent Controller version is
4.2.0.2. Please advice.

$ uname -a
Linux pnli6005 2.6.5-7.191-smp #1 SMP Tue Jun 28 14:58:56 UTC 2005 86_64
x86_64 x86_64 GNU/Linux



$ ./RAStart.sh
Starting Agent Controller

../RAStart.sh: line 44: ../bin/RAServer: cannot execute binary file
RAServer failed to start

Regards,
Krishna
Re: Agent Controller fails to start on linux [message #129898 is a reply to message #129848] Thu, 08 May 2008 14:17 Go to previous messageGo to next message
Holger Machens is currently offline Holger MachensFriend
Messages: 57
Registered: July 2009
Member
Krishna,


it looks like the executable flag of the binary RAServer is not
set properly in your configuration.
Please execute the following commands in the root directory of your
Agent Controller installation:

pwd
ls -l bin/RAServer
whoami
groups

and post the output for further analysis or even try executing

chmod a+x bin/RAServer

to set the executable flag.
Refer to Manpages (e.g. man chmod) for more information.


Holger

P.S.: I'm no tptp member.

Krishna schrieb:
> Experts,
>
> I am getting following error when I start Agent Controller on linux.
> Configuration of the machine is as follows. Agent Controller version is
> 4.2.0.2. Please advice.
>
> $ uname -a
> Linux pnli6005 2.6.5-7.191-smp #1 SMP Tue Jun 28 14:58:56 UTC 2005 86_64
> x86_64 x86_64 GNU/Linux
>
>
>
> $ ./RAStart.sh
> Starting Agent Controller
>
> ./RAStart.sh: line 44: ../bin/RAServer: cannot execute binary file
> RAServer failed to start
>
> Regards,
> Krishna
Re: Agent Controller fails to start on linux [message #129911 is a reply to message #129848] Thu, 08 May 2008 16:48 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: dmohr.cs.unm.edu

Krishna wrote:
> Experts,
>
> I am getting following error when I start Agent Controller on linux.
> Configuration of the machine is as follows. Agent Controller version is
> 4.2.0.2. Please advice.
>
> $ uname -a
> Linux pnli6005 2.6.5-7.191-smp #1 SMP Tue Jun 28 14:58:56 UTC 2005 86_64
> x86_64 x86_64 GNU/Linux
>
>
>
> $ ./RAStart.sh
> Starting Agent Controller
>
> ./RAStart.sh: line 44: ../bin/RAServer: cannot execute binary file
> RAServer failed to start
>
> Regards,
> Krishna

Looks to me like you probably have a 32bit binary, which doesn't want to
run on your 64bit system.

~David
Re: Agent Controller fails to start on linux [message #129922 is a reply to message #129911] Fri, 09 May 2008 05:26 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: cvkmurthy.hotmail.com

David Mohr wrote:
> Krishna wrote:
>> Experts,
>>
>> I am getting following error when I start Agent Controller on linux.
>> Configuration of the machine is as follows. Agent Controller version
>> is 4.2.0.2. Please advice.
>>
>> $ uname -a
>> Linux pnli6005 2.6.5-7.191-smp #1 SMP Tue Jun 28 14:58:56 UTC 2005
>> 86_64 x86_64 x86_64 GNU/Linux
>>
>>
>>
>> $ ./RAStart.sh
>> Starting Agent Controller
>>
>> ./RAStart.sh: line 44: ../bin/RAServer: cannot execute binary file
>> RAServer failed to start
>>
>> Regards,
>> Krishna
>
> Looks to me like you probably have a 32bit binary, which doesn't want to
> run on your 64bit system.
>
> ~David


As you can see below I am running 64 bit binary. Did any body get this
working on linux? If yes, can you please pass on the configurations of
the machine and version of Agent Controller?

$ file RAServer
RAServer: ELF 64-bit MSB executable, cisco 7500, version 1 (SYSV), for
GNU/Linux
2.4.19, dynamically linked (uses shared libs), not stripped


I have execute permissions for RAServer

$ ls -lrt
total 148
-rwxr-xr-x 1 chakrava iman 128 2006-06-19 05:07 SetConfig.sh*
-rwxr-xr-x 1 chakrava iman 133977 2006-06-19 05:24 RAServer*
-rwxr-xr-x 1 chakrava iman 685 2006-06-19 05:24 RAStop.sh*
-rwxr-xr-x 1 chakrava iman 1538 2006-06-19 05:24 RAStart.sh*

Regards,
Krishna
Re: Agent Controller fails to start on linux [message #129934 is a reply to message #129922] Fri, 09 May 2008 16:19 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: dmohr.cs.unm.edu

Krishna wrote:
> David Mohr wrote:
>> Krishna wrote:
>>> Experts,
>>>
>>> I am getting following error when I start Agent Controller on
>>> linux. Configuration of the machine is as follows. Agent Controller
>>> version is 4.2.0.2. Please advice.
>>>
>>> $ uname -a
>>> Linux pnli6005 2.6.5-7.191-smp #1 SMP Tue Jun 28 14:58:56 UTC 2005
>>> 86_64 x86_64 x86_64 GNU/Linux
>>>
>>>
>>>
>>> $ ./RAStart.sh
>>> Starting Agent Controller
>>>
>>> ./RAStart.sh: line 44: ../bin/RAServer: cannot execute binary file
>>> RAServer failed to start
>>>
>>> Regards,
>>> Krishna
>>
>> Looks to me like you probably have a 32bit binary, which doesn't want
>> to run on your 64bit system.
>>
>> ~David
>
>
> As you can see below I am running 64 bit binary. Did any body get this
> working on linux? If yes, can you please pass on the configurations of
> the machine and version of Agent Controller?
>
> $ file RAServer
> RAServer: ELF 64-bit MSB executable, cisco 7500, version 1 (SYSV), for
> GNU/Linux
> 2.4.19, dynamically linked (uses shared libs), not stripped

You are not misinterpreting the output of file. Yes, it's 64bit, but
it's not x86 :-). Look at the cisco 7500, in place o that you should
have x86_64. So the correct output would be:

bin/RAServer: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), for
GNU/Linux 2.4.0, dynamically linked (uses shared libs), not stripped


> I have execute permissions for RAServer
>
> $ ls -lrt
> total 148
> -rwxr-xr-x 1 chakrava iman 128 2006-06-19 05:07 SetConfig.sh*
> -rwxr-xr-x 1 chakrava iman 133977 2006-06-19 05:24 RAServer*
> -rwxr-xr-x 1 chakrava iman 685 2006-06-19 05:24 RAStop.sh*
> -rwxr-xr-x 1 chakrava iman 1538 2006-06-19 05:24 RAStart.sh*
>
> Regards,
> Krishna

~David
Re: Agent Controller fails to start on linux [message #130032 is a reply to message #129934] Wed, 14 May 2008 04:47 Go to previous message
Eclipse UserFriend
Originally posted by: cvkmurthy.hotmail.com

David Mohr wrote:
> Krishna wrote:
>> David Mohr wrote:
>>> Krishna wrote:
>>>> Experts,
>>>>
>>>> I am getting following error when I start Agent Controller on
>>>> linux. Configuration of the machine is as follows. Agent Controller
>>>> version is 4.2.0.2. Please advice.
>>>>
>>>> $ uname -a
>>>> Linux pnli6005 2.6.5-7.191-smp #1 SMP Tue Jun 28 14:58:56 UTC 2005
>>>> 86_64 x86_64 x86_64 GNU/Linux
>>>>
>>>>
>>>>
>>>> $ ./RAStart.sh
>>>> Starting Agent Controller
>>>>
>>>> ./RAStart.sh: line 44: ../bin/RAServer: cannot execute binary file
>>>> RAServer failed to start
>>>>
>>>> Regards,
>>>> Krishna
>>>
>>> Looks to me like you probably have a 32bit binary, which doesn't want
>>> to run on your 64bit system.
>>>
>>> ~David
>>
>>
>> As you can see below I am running 64 bit binary. Did any body get this
>> working on linux? If yes, can you please pass on the configurations of
>> the machine and version of Agent Controller?
>>
>> $ file RAServer
>> RAServer: ELF 64-bit MSB executable, cisco 7500, version 1 (SYSV), for
>> GNU/Linux
>> 2.4.19, dynamically linked (uses shared libs), not stripped
>
> You are not misinterpreting the output of file. Yes, it's 64bit, but
> it's not x86 :-). Look at the cisco 7500, in place o that you should
> have x86_64. So the correct output would be:
>
> bin/RAServer: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), for
> GNU/Linux 2.4.0, dynamically linked (uses shared libs), not stripped
>
>
>> I have execute permissions for RAServer
>>
>> $ ls -lrt
>> total 148
>> -rwxr-xr-x 1 chakrava iman 128 2006-06-19 05:07 SetConfig.sh*
>> -rwxr-xr-x 1 chakrava iman 133977 2006-06-19 05:24 RAServer*
>> -rwxr-xr-x 1 chakrava iman 685 2006-06-19 05:24 RAStop.sh*
>> -rwxr-xr-x 1 chakrava iman 1538 2006-06-19 05:24 RAStart.sh*
>>
>> Regards,
>> Krishna
>
> ~David

Does it means that I cannot run Agent Controller on my linux machine? Or
is there a different Agent Controller download available at TPTP site
for my machine configuration.

Regards,
Krishna
Previous Topic:Examples on writing a log correlator?
Next Topic:TPTP and java compiler's "filtered resources"
Goto Forum:
  


Current Time: Fri Apr 19 16:07:26 GMT 2024

Powered by FUDForum. Page generated in 0.02398 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top