Search 

Rational Robot and Test Agent Licenses 
Friday, September 24, 2004, 14:28
Posted by Administrator
We've got a few copies of Rational Robot and a '5 Pooled Virtual Tester Pack' to allow us to us an addtional 5 Test Agents.

Having requested the key for the Virtual Tester pack to go on our FlexLM license server 'dobbing'. Pointing the Rational Key Administrator at our FlexLM server resulted in this:


However when I tred to execute a test suite on more than one remote machine, i.e. using one of the pack of 5 licenses it gave this error message:
Failed to check out the necessary licenses. MC_29_5_1

After having no success searching the manual and web, I contacted our supplier who provided this link: www-1.ibm.com/support/docview.wss MASSIVE URL

Then on the licence server we looked at the long list of PACKAGE lines from the link above and chose just this one:

PACKAGE TMvtpool rational 8.0 FE4376C9DEE0
COMPONENTS="TMvirtualtester:8.0:5"

The TMvtpool in this one matched the INCREMENT line in the key we recieved from Rational, so it seemed the most likely one, although it would seem to make more sense if the TMvtpool was in the COMPONENTS with the package being called TMvirtualtester.

Success
An additional license was checked from the pool aand I can now have Agent on various windows platforms all ready to execute tests - providing I don't use more that 6 at a time.
Q. Why six and not 5?
A. 5 from the pool and 1 from my copy of Rational Robot.

The Rational License Key Manager now looks like this:


Why can I find rational help via the web?
Their URLs are so long I'm sure search engine bots will ignore them or treat them as recursive.

  |   Share
add comment ( 315 views )   |  0 trackbacks   |  permalink

Silent Install? 
Thursday, September 23, 2004, 16:21
Posted by Administrator
Did you know you can run install shield's setup.exe silently at the command line using:
setup -s??

It's also possible to configure setup files to repeat setups in the same way.

More information here:
http://www.appdeploy.com/tips/detail.asp?id=18
  |   Share
add comment ( 268 views )   |  0 trackbacks   |  permalink

Cannot connect to FC2 server on Port25 
Thursday, September 23, 2004, 14:46
Posted by Administrator
I'm 99% sure that when I installed my Fedora Core 2 server, when I turned the firewall on, I opted to allow incomming mail (Port 25).

However now I've got it set up and email working with MailScanner I cannot connect to it:
netstat -an : grep LISTEN
Reveals:

....
tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN
....

tcp 0 0 :::80 :::* LISTEN
tcp 0 0 :::22 :::* LISTEN
tcp 0 0 :::443 :::* LISTEN
...


Showing http, https and ssh are available externally, but mail (port 25) is only available locally.

How to fix this?

First of all IT'S NOT THE FIREWALL - it's actual the sendmail.mc file in /etc/mail
Change this line:
DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl
to:
# dnl DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl

Then in the /etc/mail dir:
make -C /etc/mail

Now test the connection from a remote machine using: telnet you.mail.machine.ip 25 sendmail should respond with a prompt. If this doesn't work you may have firewall problems.

  |   Share
add comment ( 207 views )   |  0 trackbacks   |  permalink

VI Quick Reference 
Thursday, September 23, 2004, 14:18
Posted by Administrator
Something I always need:
vi-reference.pdf
  |   Share
add comment ( 120 views )   |  0 trackbacks   |  permalink

Crontab triggering CVS Updates 
Thursday, September 23, 2004, 13:44
Posted by Administrator
Problem: How to get webpages to automatically update from source control. I use CVS from www.cvshome.org to version control everything - html, javascript, images, etc..

I may explain later how to setup cvs, once its done, here's how to add it to crontab and schedule updates from your cvs repository:

Crontab uses the EDITOR environment variable, so set this to your favorite editor like this:
EDITOR=vi

Now edit your crontab like this:
crontab -e

Your editor will open with your crontab in it, here's how to get it to update every morning at 9:00am:
00 09 * * 1-5 cd /home/your-user-id/wwwdir/; /usr/local/bin/cvs -d /your/cvs/repository update -P -d -R -C > cvsupdate.txt 2>&1; mail authors@yourwebsite.com < cvsupdate.txt;

Check your edit has worked using:
crontab -l
..it must return your crontab including edits.
Each crontab must be on one line!!

Important:
1) cvs update -P -d -R -C gets a clean copy from the repository, creating new dirs and removing deleted ones.
2) I've used full paths for the CVS executable, crontab has its own environment - it may be different from your users environment.

A few more points to note:
1) 1-5 means Monday to Friday
2) 00 09 means at 09:00am
3) This leaves cvsupdate.txt in your document root - you may not require this, in which case add rm cvsupdate.txt; after the last ';'

  |   Share
add comment ( 264 views )   |  0 trackbacks   |  permalink


<<First <Back | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | Next> Last>>