Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Ralus Install Questionable on UNIX Post 302090414 by Yorgy on Monday 25th of September 2006 01:09:14 PM
Old 09-25-2006
Question

I am updating this post incase anyone may have some suggestion. I ran the agent in debug mode and here are my results.

./agent.be: Using configuration file: agent.cfg
28677:Config File Workstation Name=UNIX
28677:Mangled Workstation Name=UNIX
28677:Workstation requires password
28677:exporting /data as /var
28677:exporting /etc as etc
28677:exporting /home as home
28677:exporting /usr as usr
28677:advertising to dc2
28677:interval between advertisements is 120
./agent.be: Using configuration file: agent.cfg
Backup Exec -- Unix Agent, Version 5.01 Revision 5.046
Copyright 2001 VERITAS Software Corporation. All Rights Reserved.
./agent.be: Agent configuration OK.
./agent.be: Workstation Name: "UNIX"
28684: NRL TCP SPECIFIC
28684: Opening TLI device /dev/tcp
28684: Initializing Advertisement Sending Process
28684: gethostbyname returned bff14e00
**** getservbyname(grfs, tcp) failed! ****
**** using default port number(6101) for resource advertising ****

28684: address of dc2 is 28684: 192.168.1.11
28684: len and maxlen are 16
28684: NRL: IP Address of host (atdc2)28684: is (192.168.1.11.213.23)28684: NRLInitialize returning 0
28684: Add Resource function called
28684: resource local tlifd is ** 7 **
28684: t_alloc_v returning 8066ca0
28684: t_alloc_v returning 806abf0
28684: Binding to all interfaces
28684: resource_ptr->info.local.call=806abf0
28684: binding port 8192
28684: bind returned -1
28684: errno=125
28684: binding port 8193
28684: bind returned -1
28684: errno=125
28684: binding port 8194
28684: bind returned 0
28684: errno=0
28684: calling listen with qlen=10
28684: AddRes bind returned 0
28684: address=0.0.0.0.32.2
./agent.be: Backup Exec Agent ready to service requests.
28684: waiting for select of 8
28686: NRLAdvertisementSender - main-loop resource 2045ATUNIX
28686: tli open 28686: rc=9 28686: tlifd=9 28686:
28686: t_alloc_v returning 8066c40
28686: Advertiser binding to all interfaces
28686: binding port 8194
28686: bind returned -1
28686: errno=125
28686: binding port 8195
28686: bind returned 0
28686: errno=0
28686: NRLAdvertisementSender: bind returned 0
28686: address=0.0.0.0.32.3
28686: tli bind 28686: rc=0 28686: tlifd=9 28686:
28686: t_alloc_v( T_CALL, T_OPT ) not supported
28686: t_alloc_v( T_CALL, T_UDATA ) not supported
28686: t_alloc_v returning 806ac20
#ident "@(#)services 1.9"
#ident "$Header$"

The ones highlighted is where I am running into problems. The IP address listed with 213.23 converts to port number 6839 which does not make any sense. It should convert to 6101 for grfs.

Hope someone can take the time to help me on this.

Thanks
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix Install

Hi I'm a newbie here and, in Unix. I bought a book to learn the code. I have been in different websites to find information on how to install Red Hat Linux 7.2 on my system, but I may not understand what's going on. All I see on the sites is ftp sites for download but when you click on the links... (1 Reply)
Discussion started by: Millienc
1 Replies

2. UNIX for Dummies Questions & Answers

How to install Unix on my pc

Hi guys, I have used Unix while I was a student but want to install it on my pc. My question is How do I install UNIX on my pc which has Windows XP already installed and running? I have a bootable Unix 6.0 CD. thanks (6 Replies)
Discussion started by: asif iqbal
6 Replies

3. UNIX for Dummies Questions & Answers

How to install Unix

Can anyone tell me how to install Unix. (1 Reply)
Discussion started by: hrach_gulzadyan
1 Replies

4. UNIX for Dummies Questions & Answers

How do I install Unix?

Hi, Im completely new to Unix installations, but have done some unix work so some commands are not new to me. But I would like to start my own Unix FTP server, but I have no clue where to start. I have a computer that i soon format the HD on (Was Windows,Intel computer), so I want to use... (3 Replies)
Discussion started by: helpMeGetStarte
3 Replies

5. UNIX for Dummies Questions & Answers

How to install Unix??

Hi Experts, I am a new born trying to start learning UNIX so please be patient. I have downloaded Free BSD 9.0 Release i386 All recently.Upon extracting it I found four Disc Image File. FreeBSD-9.0-RELEASE-i386-bootonly FreeBSD-9.0-RELEASE-i386-disc1 FreeBSD-9.0-RELEASE-i386-dvd1... (1 Reply)
Discussion started by: RishabhK
1 Replies
Carton::Doc::Install(3pm)				User Contributed Perl Documentation				 Carton::Doc::Install(3pm)

NAME
Carton::Doc::Install - Install the dependencies SYNOPSIS
carton install [--deployment] [--path=PATH] [modules...] DESCRIPTION
Install the dependencies for your application. This command has two modes and the behavior is slightly different. DEVELOPMENT MODE carton install (no arguments) If you run "carton install" without any arguments and if cpanfile exists, carton will scan dependencies from cpanfile and install the modules. In either way, if you run "carton install" for the first time (i.e. carton.lock does not exist), carton will fetch all the modules specified, resolve dependencies and install all required modules from CPAN. If carton.lock file does exist, carton will still try to install modules specified or updated in cpanfile, but uses carton.lock for the dependency resolution, and then cascades to CPAN. carton will analyze all the dependencies and their version information, and it is saved into carton.lock file. It is important to add carton.lock file into a version controlled repository and commit the changes as you update your dependencies. DEPLOYMENT MODE If you specify the "--deployment" command line option or the carton.lock exists and cpanfile does not exist, carton will fetch all remote modules and use the dependencies specified in the carton.lock instead of resolving dependencies. CONSERVATIVE UPDATE
"carton install" doesn't update the modules already installed into local library path as long as the version is satisfied. For example, one day you install URI-1.50 from CPAN: > carton install URI Successfully installed URI-1.50 Few weeks later, URI module is updated to 1.51 on CPAN. If you run the "carton install URI" again: > carton install URI You have URI (1.50) because you haven't specified the version number, carton won't update the module in your local library path. WARNINGS: following commands are not implemented If you want to update to the latest version of CPAN, you can either use "carton update" command, or specify the required version either in your cpanfile. > carton update URI > cat cpanfile requires 'URI', 1.51; Any of those will upgrade URI to the latest one from CPAN, and the version specified in the carton.lock will be bumped. OPTIONS
--deployment Force the deployment mode and carton will ignore cpanfile contents. --path Specify the path to install modules to. Defaults to local in the current directory. perl v5.14.2 2012-04-12 Carton::Doc::Install(3pm)
All times are GMT -4. The time now is 06:47 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy