Installation of WRQ Reflection Suite version 12.0 using console mode


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Installation of WRQ Reflection Suite version 12.0 using console mode
# 1  
Old 08-15-2010
Question Installation of WRQ Reflection Suite version 12.0 using console mode

hi,

I have installed WRQ Reflection Suite version 12.0 on my machine.how to configure it? Please suggest me what are the steps after installation?
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Solaris

Unable to login via console mode to non-global zone

tldr; We've installed a non-global-zone from a unified archive which once booted, we're unable to gain access to the system either through zlogin or zlogin -C. Errors; svc.startd: instance svc:/system/console-login:default exited with status 127 Investigation; 1) Already opened a SR with... (1 Reply)
Discussion started by: samthewildone
1 Replies

2. UNIX and Linux Applications

Help with AT&T UNIX SYSTEM V Version 4 Console Login

Hello I install AT&T UNIX System V Release 4 Version 2.1 (3.5) on Emulator Bochs 2.6.8 here I done with all Base .img file upload after uploading 10 the base img file System take restart and after that System ask for console Login. which is as root and password set by me. But it will NOT allow... (7 Replies)
Discussion started by: Akshay Nalange
7 Replies

3. Solaris

Redirecting console output to ILOM during installation

Hi, I need to install solaris remotely via the ILOM port on a x4170 box, and I have downloaded the Solaris 11 for x86 - text install image and burned it on a DVD. When I boot the box, it's showing the boot_archive loading percentage on the SP console, but when it's done and start the interactive... (0 Replies)
Discussion started by: u_paludan
0 Replies

4. Red Hat

Installation of Oracle E-Business Suite 12.1.1 on RHEL 6.1

i run Health Check/Validation for "Oracle E-Business Suite Release 12 (12.1.1) Preinstall (Linux x86 and x86_64)" im getting following errors : 1.Some of the required software tools for the the application tier of Oracle E-Business Suite Release 12 (12.1.1) installation were not found. ... (4 Replies)
Discussion started by: rehantayyab82
4 Replies

5. Solaris

Console-login in maintainance mode

I have a v490 server running Solaris 10. Everytime I reboot this machine, the console-login service goes to maintainance mode and I have to provide the root password. All the other dependencies are running fine and nothing there in the logs too. To bring it online, I have to enable it manually. ... (1 Reply)
Discussion started by: aksijain
1 Replies

6. Solaris

Cannot recover root passwd through serial console mode by using CDROM

hi i cant recovery root passwd through serial console mode by using CDROM.. i tried following step but no luck in ok prompt : ok boot cdrom -s it comes single user mode i check format cmd it showing disk c1t0d0 c1t2d0 then #mount /dev/dsk/c1t0d0s0 /a #cd /a # vi /etc/shadow ( it... (13 Replies)
Discussion started by: coolboys
13 Replies

7. Windows & DOS: Issues & Discussions

WRQ Reflection SFTP process hangs when run using windows scheduler

Hi I am doing development on .net framework on Win 2003 box. I am scheduling a job using Windows scheduler to kick off SFTP of files from a local directory to a remotre Unix box. I am using WRQ Reflection Multihost v12.0.7 standard edition for this. Here is how we are scheduling the thing.... (0 Replies)
Discussion started by: kapilash
0 Replies
Login or Register to Ask a Question
TFTPd(3pm)						User Contributed Perl Documentation						TFTPd(3pm)

NAME
Net::TFTPd - Perl extension for Trivial File Transfer Protocol Server SYNOPSIS
use strict; use Net::TFTPd; my $tftpdOBJ = Net::TFTPd->new('RootDir' => 'path/to/files') or die "Error creating TFTPd listener: %s", Net::TFTPd->error; my $tftpRQ = $tftpdOBJ->waitRQ(10) or die "Error waiting for TFTP request: %s", Net::TFTPd->error; $tftpRQ->processRQ() or die "Error processing TFTP request: %s", Net::TFTPd->error; printf "%u bytes has been transferred", $tftpRQ->getTotalBytes() || 0; DESCRIPTION
"Net::TFTPd" is a class implementing a simple Trivial File Transfer Protocol server in Perl as described in RFC1350. "Net::TFTPd" also supports the TFTP Option Extension (as described in RFC2347), with the following options: RFC2348 TFTP Blocksize Option RFC2349 TFTP Timeout Interval and Transfer Size Options EXPORT
None by default. %OPCODES The %OPCODES tag exports the %OPCODES hash: %OPCODES = ( 1 => 'RRQ', 2 => 'WRQ', 3 => 'DATA', 4 => 'ACK', 5 => 'ERROR', 6 => 'OACK', 'RRQ' => 1, 'WRQ' => 2, 'DATA' => 3, 'ACK' => 4, 'ERROR' => 5, 'OACK' => 6 ); Listener constructor new() $listener = new Net::TFTPd( ['RootDir' => 'path/to/files' | 'FileName' => 'path/to/file'] [, OPTIONS ] ); or $listener = Net::TFTPd->new( ['RootDir' => 'path/to/files' | 'FileName' => 'path/to/file'] [, OPTIONS ] ); Create a new Net::TFTPd object where 'path/to/files' is the default path to file repository or 'path/to/file' is the single file allowed for download, and OPTIONS are the default server options. Valid options are: Option Description Default ------ ----------- ------- LocalAddr Interface to bind to (for multi-homed server) any LocalPort Port to bind server to 69 Timeout Timeout in seconds to wait for a request 10 ACKtimeout Timeout in seconds to wait for an ACK packet 4 ACKretries Maximum number of retries waiting for ACK 4 Readable Clients are allowed to read files 1 Writable Clients are allowed to write files 0 BlkSize Minimum blocksize to negotiate for transfers 512 CallBack Reference to code executed for each transferred block - Debug Activates debug mode (verbose) 0 CallBack The CallBack code is called by processRQ method for each tranferred block. The code receives (into @_ array) a reference to internal $request object. Example: sub callback { my $req = shift; printf "block: %u/%u ", $req->{'_REQUEST_'}{'LASTACK'}, $req->{'_REQUEST_'}{'LASTBLK'}; } my $tftpdOBJ = Net::TFTPd->new('RootDir' => 'c:/temp', 'Timeout' => 60, 'CallBack' => &callback) or die Net::TFTPd->error; Listener methods waitRQ() $request = $listener->waitRQ([Timeout]); Waits for a client request (RRQ or WRQ) and returns a $request object or undef if timed out. If Timeout is missing, the timeout defined for $listener object is used instead. When the method returns, the program should fork() and process the request invoking processRQ() while the parent process should re-start waiting for another request. Request methods processRQ() $ret = $request->processRQ(); Processes a request and returns 1 if success, undef if error. getFileName() $ret = $request->getFileName(); Returns the requested file name. getMode() $ret = $request->getMode(); Returns the transfer mode for the request. getBlkSize() $ret = $request->getBlkSize(); Returns the block size used for the transfer. getPeerAddr() $ret = $request->getPeerAddr(); Returns the address of the requesting client. getPeerPort() $ret = $request->getPeerMode(); Returns the port of the requesting client. getTotalBytes() $ret = $request->getTotalBytes(); Returns the number of bytes transferred for the request. CREDITS
Thanks to <Vince> for the NETASCII support and transferred bytes patch. AUTHOR
Luigino Masarati, <lmasarati@hotmail.com> SEE ALSO
Net::TFTP. perl v5.10.1 2009-07-07 TFTPd(3pm)