Saturday, November 20, 2010

BASE CLEARCASE ENGINEER

Configuration Manager
SilverSearch, Inc.  -  Paramus, NJ

must be at clearcase administrator level and able to perform all server administration/architecture/support/install, user support, multisite replication, merging/branching, Vobs/Views administrations, Triggers,... Application + Software Source Code Version...


View the original article here

Re: Direct Queries to CC Database

Permlink Replies: 9 - Pages: 1 - Last Post: Nov 18, 2010 5:14 PM Last Post By: Mark_at_Softwar... Threads: [ Previous | Next ]
Posts: 8
Registered: Oct 13, 2006 04:15:41 PM Direct Queries to CC Database
Posted: Nov 16, 2010 03:08:02 PM It may be easiest to just give an example. Suppose I want a list of all files (elements) whose basename is foo.c. "basename" is the last part of a path. So with a element on path /a/b/c/d/foo.c, the basename is foo.c.

I know about the "find" command (cleartool find . -name foo.c -print) but that is doing a linear search. There should be a way that I can do something like "select path where path like '%/foo.c'" in SQL terms.

I have many other questions after this one but this will get me started.

Thank you for your help
Perry


Posts: 686
Registered: Jun 25, 2007 04:53:38 PM Re: Direct Queries to CC Database
Posted: Nov 16, 2010 05:20:23 PM   in response to: pedz in response to: pedz's post You can use an asterisk as a wildcard in the name:cleartool find -all -name "*foo.c" -print

You can also use the asterisk on both ends of the name to find substrings:cleartool find -all -name "*foo*" -print

-Jeff Ng


Posts: 885
Registered: Jun 09, 2005 09:06:53 PM Re: Direct Queries to CC Database
Posted: Nov 16, 2010 05:40:20 PM   in response to: pedz in response to: pedz's post if you use -all, it will search independently of the config spec and also use internal indexes if available. That works up to a certain number of hits and ccan actually be somewhat fast. It depends on exactly what you are searching for.
You can use any sql because the CC DB isn't sql. It is called RAIMA and there is no user accessible interface except cleartool commands. They tried to use a relational DB and the performance was really bad. So RAIMA its is and will be.

Martina
Don't Postpone Joy - Have Fun

ReleaseTEAM Inc
http://www.releaseteam.com
IBM Rational Certified Consultants
IBM Business Partner


Posts: 8
Registered: Oct 13, 2006 04:15:41 PM Re: Direct Queries to CC Database
Posted: Nov 17, 2010 05:06:19 PM   in response to: martina in response to: martina's post time cleartool find -all -name foo.c -print

took 32 minutes to complete. :-(

Plus, I'm pretty sure it is searching only a small fraction of all the files. If I go up a directory, the find does not work. And in that directory, there are probably 20 sub directories. I think the find above is searching just one of the 20+ sub directories because that is where I started the find. Doing things like find * or find ./* did not work. But, its rather moot. CMVC could do the query over the same files in a few seconds and give me tons of more information in one query like tying changes to defects, etc.

It is fine if I can't do SQL but there must be some way to dig out the information that I'm looking for. So far, all the cleartool commands produce verbose texty stuff which has the data but with a lot of verbose text around it. I'm needing just the data.


Posts: 686
Registered: Jun 25, 2007 04:53:38 PM Re: Direct Queries to CC Database
Posted: Nov 17, 2010 05:36:55 PM   in response to: pedz in response to: pedz's post You wrote: cleartool find -all -name foo.c -print

The "-all" option expands the search to the entire VOB that you are currently in. By default, ALL visible and invisible elements are searched, but there are options (-visible | -nvisible) to constrain the search. If you want to search all VOBs, use the "-avobs" option which will search all VOBs mounted on the host you execute the command on.

If the find command doesn't work one directory up, then you probably are not in a VOB anymore (multi-part VOB tag names).

-Jeff Ng


Posts: 8
Registered: Oct 13, 2006 04:15:41 PM Re: Direct Queries to CC Database
Posted: Nov 17, 2010 06:02:53 PM   in response to: jeff98air in response to: jeff98air's post My point about find is it isn't going to work for me. It is way too slow.

There has to be another way to do this. Nothing could be this broken.

As a more practical question: how do I find the list of files that belong to a component? Does CC even have the concept of components? Some way to group files into sets that are managed by one team?


Posts: 474
Registered: Apr 08, 2008 11:40:52 PM Re: Direct Queries to CC Database
Posted: Nov 17, 2010 06:21:08 PM   in response to: pedz in response to: pedz's post Lets step back a bit here - you need to tell us what your requirement is in context. What is the problem you are trying to solve?

It seems unlikely to me that you are going to frequently have to scour your entire source tree looking for foo.c (or whatever). More than likely there is a different way to solve whatever the underlying requirement is.


Posts: 201
Registered: Jan 15, 2005 05:15:03 PM Re: Direct Queries to CC Database
Posted: Nov 18, 2010 02:37:08 AM   in response to: pedz in response to: pedz's post This question seems to me asked from a Subversion user that by default enquiries the database directly ---> "select path where path like '%/foo.c'"
scary way to work in Sofware Configuration Management

1- there is no need to use cleartool find unless extract data from all branches
2- when the view is mapped, default windows M: driver and Linux/Unix the stgloc set by the admin

Just use dir foo. /s* in Windows and ll -R | grep foo in Linux/Unix . . . . job done

But as someone has already asked, what is the purpose of you question, more important what is your aim?


Posts: 8
Registered: Oct 13, 2006 04:15:41 PM Re: Direct Queries to CC Database
Posted: Nov 18, 2010 12:33:01 PM   in response to: Anthony Coluzzi in response to: Anthony Coluzzi's post My initial objective is to "port" two CMVC scripts. I believe if I can do that, then I'll be on my way.

One of them queries CMVC and reports back, for all files like foo.c all the changes and all the defects that are associated with the changes for all releases for that file. I'd be somewhat content if it was only one particular file. So: All the changes, for all releases (what CC calls areas), tied back to Defect numbers. The report gives me the from and to sccs id strings. There is also a similar report that gives me all the changes for all the files for a particular component (for all releases). These reports take only seconds to run. We (support) do them rather often. I call those scripts Prs and Prs-comp.

The opposite direction is a script called Changes. It is similar to a CC script we have called ChangeRecord but the difference is that Changes goes across releases as well where as ChangeRecord requires a specific "area". So, Changes takes a Defect and reports back all the files for all releases changed by that defect. It too gives me the from (previous) sccs id string and the new sccs id string.

I get that the sccs id strings are different in CC/CQ but the purpose is the same. If we are talking to a customer and them to do a "what blahblah" to get the list of source files used to create that version of blahblah, we need to be able to quickly map that back to a defect and understand where that defect fits in in the stream of changes made for blahblah or for that component.

A typical support person in our team is supporting over a million lines of code. That is just the networking code, its drivers, and various other bits and pieces. There are probably a couple dozen such other teams supporting almost the same amount of code. Even knowing just the paths to the files is a challenge.


Posts: 474
Registered: Apr 08, 2008 11:40:52 PM Re: Direct Queries to CC Database
Posted: Nov 18, 2010 05:14:36 PM   in response to: pedz in response to: pedz's post As I guessed you might need to try a different approach...

For a start - if you were using ClearCase's UCM instead of vanilla ClearCase I think at least some of those features would be available straight out of the box. However I gather you are not doing that.

It isn't quite clear if you are using ClearQuest as well as ClearCase but you must be using something to track change requests and linking that information to ClearCase. Its hard answer without knowing this.

For some more generic approaches... In ClearCase you typically label the versions of everything that are part of a release.
So for example one of the ones you mentioned - "get the list of source files used to create that version..." (I assume "version" in this context is a release of the deployed product). You would do a find by the label. There are several ways to do this (find command of course is one). In this scenario (searching by label) I think you would find "find" is much faster.

It also means you can just get a view of the code as at any release quickly... if you labelled everything as REL3.1 just create a view and set the config spec to:element * REL3.1
If it is a dynamic view you will then be looking at the entire source tree as at that release immediately.

Find can be used to identify all the versions of files that changed between two labelled releases. This is a bit more complex because it needs three find queries to cover the changes, adds, and deletes.

For your defect related identifier questions we'd need to know how you are connecting code to defects.

Help

Use the search field to find all types of content in My developerWorks with that tag.

Use the slider bar to see more or fewer tags.

Popular tags shows the top tags for this particular type of content or application that you're viewing.

My tags shows your tags for this particular type of content or application that you're viewing.

Use the search field to find all types of content in My developerWorks with that tag. Use the slider bar to see more or fewer tags. Popular tags shows the top tags for this particular type of content or application that you're viewing. My tags shows your tags for this particular type of content or application that you're viewing.MoreLess 
Point your RSS reader here for a feed of the latest messages in all forums

View the original article here

How to migrate COBOL source code to clearcase

If you just need a one-time move, a file packing tool -- like PKZip/MVS or UnXMIT -- to bundle the source up. You can then transmit it using IND$FILE, ISPF File Transfer or FTP to your clearcase server and check it in.

If you need ongoing updates of your mainframe resources on a server based source control system, you might be better off setting up some shared DASD using samba, NFS or the like between your mainframe and your server.

Unless you plan on doing your development on PCs, I don't think Rational Developer for Z is going to be a good fix. It will do what you need, but the mainframe setup is kind of headache-y and the cost of the product is excessive if all you need is to move resources to/from your clearcase server.

IIRC, RDz costs about 6k per seat. You might spend a few days writing some procs to ftp to/from your clearcase server and check-in/check-out and save some heafty expense. Actually, IBM ought to already have those tools built already. Clearcase supports remote machines doing checkin/checkout, maybe all you need is USS and a TCP/IP connection.


View the original article here

Software Engineer

Salary: £competitive + benefitsLocation: Bar Hill, CambsPosted: 16/11/2010Contract: PermanentEmployer: Domino UK LtdReference: Software EngineerSector: Manufacturing, Engineering, Telecommunications, Logistics, OtherClosing date: 16/12/2010

Domino Do More with your career

Opportunities with a global leader

£competitive + benefits

Strong team culture, strong team leadership, world-class standards in all that we do … that’s what makes Domino a world-leading business.

We’ve worked hard and smart to earn our reputation for clever technology; designing, developing and manufacturing coding solutions that set new industry standards for quality and reliability. Our technology is an integral part of our customers’ manufacturing processes, printing variable data and traceability codes at high speed.

We’re growing faster than ever, which creates exciting career opportunities.”

JOB PURPOSE

To develop cost-effective and innovative embedded software solutions, in-line with company business objectives, meeting technical, business and quality requirements. This job typically involves working on one main New Product Introduction project at a time, whilst concurrently providing support for smaller incremental projects and/or support activities.

KEY TASKS / ACCOUNTABILITIES

• Undertake software requirements analysis, concept proposals and top-level design, detailed design and coding

• Undertake software verification and validation against functional requirements and national / international standards.

• Assist with production and field problem investigation and provide appropriate solutions as and when required.

• Provide value engineering and cost reduction support.

COMPETENCIES

Core

• Initiating Action

• Team Working

• Work Standards

• Problem Solving

• Questioning & Analysis

• Impact & Acceptability

• Creativity

Desirable

• Influencing

• Energy

• Adaptability

EDUCATION & TRAINING

• BSc (Hons) or equivalent, in software engineering or equivalent.

EXPERIENCE / KNOWLEDGE

• Experience of hands-on software development in real-time embedded product development applications

TECHNICAL SKILLS

Essential

• C++ Programming

• Real Time Operating System Knowledge (WinCE preferred)

• Proven record of model driven design using Matlab/Simulink

Desirable - At least three from following:

• Software Engineering Principles – Life Cycles, Methodologies (Object Orientated preferred)

• Electronic hardware to software interfacing and microprocessor architectures from a software perspective

• Embedded Software testing methods

• UML

• Design and creation of unit test, software test harnesses and automated software testing strategies

• Software Configuration Management (hands-on working experience of Clearcase).

• Technical report/documentation writing.

• Software Design pattern.

• STL in C++

PERSONAL ATTRIBUTES

• Proactive approach to work

• Ability to work well as part of a team


View the original article here

Re: Direct Queries to CC Database

Permlink Replies: 9 - Pages: 1 - Last Post: Nov 18, 2010 5:14 PM Last Post By: Mark_at_Softwar... Threads: [ Previous | Next ]
Posts: 8
Registered: Oct 13, 2006 04:15:41 PM Direct Queries to CC Database
Posted: Nov 16, 2010 03:08:02 PM It may be easiest to just give an example. Suppose I want a list of all files (elements) whose basename is foo.c. "basename" is the last part of a path. So with a element on path /a/b/c/d/foo.c, the basename is foo.c.

I know about the "find" command (cleartool find . -name foo.c -print) but that is doing a linear search. There should be a way that I can do something like "select path where path like '%/foo.c'" in SQL terms.

I have many other questions after this one but this will get me started.

Thank you for your help
Perry


Posts: 686
Registered: Jun 25, 2007 04:53:38 PM Re: Direct Queries to CC Database
Posted: Nov 16, 2010 05:20:23 PM   in response to: pedz in response to: pedz's post You can use an asterisk as a wildcard in the name:cleartool find -all -name "*foo.c" -print

You can also use the asterisk on both ends of the name to find substrings:cleartool find -all -name "*foo*" -print

-Jeff Ng


Posts: 885
Registered: Jun 09, 2005 09:06:53 PM Re: Direct Queries to CC Database
Posted: Nov 16, 2010 05:40:20 PM   in response to: pedz in response to: pedz's post if you use -all, it will search independently of the config spec and also use internal indexes if available. That works up to a certain number of hits and ccan actually be somewhat fast. It depends on exactly what you are searching for.
You can use any sql because the CC DB isn't sql. It is called RAIMA and there is no user accessible interface except cleartool commands. They tried to use a relational DB and the performance was really bad. So RAIMA its is and will be.

Martina
Don't Postpone Joy - Have Fun

ReleaseTEAM Inc
http://www.releaseteam.com
IBM Rational Certified Consultants
IBM Business Partner


Posts: 8
Registered: Oct 13, 2006 04:15:41 PM Re: Direct Queries to CC Database
Posted: Nov 17, 2010 05:06:19 PM   in response to: martina in response to: martina's post time cleartool find -all -name foo.c -print

took 32 minutes to complete. :-(

Plus, I'm pretty sure it is searching only a small fraction of all the files. If I go up a directory, the find does not work. And in that directory, there are probably 20 sub directories. I think the find above is searching just one of the 20+ sub directories because that is where I started the find. Doing things like find * or find ./* did not work. But, its rather moot. CMVC could do the query over the same files in a few seconds and give me tons of more information in one query like tying changes to defects, etc.

It is fine if I can't do SQL but there must be some way to dig out the information that I'm looking for. So far, all the cleartool commands produce verbose texty stuff which has the data but with a lot of verbose text around it. I'm needing just the data.


Posts: 686
Registered: Jun 25, 2007 04:53:38 PM Re: Direct Queries to CC Database
Posted: Nov 17, 2010 05:36:55 PM   in response to: pedz in response to: pedz's post You wrote: cleartool find -all -name foo.c -print

The "-all" option expands the search to the entire VOB that you are currently in. By default, ALL visible and invisible elements are searched, but there are options (-visible | -nvisible) to constrain the search. If you want to search all VOBs, use the "-avobs" option which will search all VOBs mounted on the host you execute the command on.

If the find command doesn't work one directory up, then you probably are not in a VOB anymore (multi-part VOB tag names).

-Jeff Ng


Posts: 8
Registered: Oct 13, 2006 04:15:41 PM Re: Direct Queries to CC Database
Posted: Nov 17, 2010 06:02:53 PM   in response to: jeff98air in response to: jeff98air's post My point about find is it isn't going to work for me. It is way too slow.

There has to be another way to do this. Nothing could be this broken.

As a more practical question: how do I find the list of files that belong to a component? Does CC even have the concept of components? Some way to group files into sets that are managed by one team?


Posts: 474
Registered: Apr 08, 2008 11:40:52 PM Re: Direct Queries to CC Database
Posted: Nov 17, 2010 06:21:08 PM   in response to: pedz in response to: pedz's post Lets step back a bit here - you need to tell us what your requirement is in context. What is the problem you are trying to solve?

It seems unlikely to me that you are going to frequently have to scour your entire source tree looking for foo.c (or whatever). More than likely there is a different way to solve whatever the underlying requirement is.


Posts: 201
Registered: Jan 15, 2005 05:15:03 PM Re: Direct Queries to CC Database
Posted: Nov 18, 2010 02:37:08 AM   in response to: pedz in response to: pedz's post This question seems to me asked from a Subversion user that by default enquiries the database directly ---> "select path where path like '%/foo.c'"
scary way to work in Sofware Configuration Management

1- there is no need to use cleartool find unless extract data from all branches
2- when the view is mapped, default windows M: driver and Linux/Unix the stgloc set by the admin

Just use dir foo. /s* in Windows and ll -R | grep foo in Linux/Unix . . . . job done

But as someone has already asked, what is the purpose of you question, more important what is your aim?


Posts: 8
Registered: Oct 13, 2006 04:15:41 PM Re: Direct Queries to CC Database
Posted: Nov 18, 2010 12:33:01 PM   in response to: Anthony Coluzzi in response to: Anthony Coluzzi's post My initial objective is to "port" two CMVC scripts. I believe if I can do that, then I'll be on my way.

One of them queries CMVC and reports back, for all files like foo.c all the changes and all the defects that are associated with the changes for all releases for that file. I'd be somewhat content if it was only one particular file. So: All the changes, for all releases (what CC calls areas), tied back to Defect numbers. The report gives me the from and to sccs id strings. There is also a similar report that gives me all the changes for all the files for a particular component (for all releases). These reports take only seconds to run. We (support) do them rather often. I call those scripts Prs and Prs-comp.

The opposite direction is a script called Changes. It is similar to a CC script we have called ChangeRecord but the difference is that Changes goes across releases as well where as ChangeRecord requires a specific "area". So, Changes takes a Defect and reports back all the files for all releases changed by that defect. It too gives me the from (previous) sccs id string and the new sccs id string.

I get that the sccs id strings are different in CC/CQ but the purpose is the same. If we are talking to a customer and them to do a "what blahblah" to get the list of source files used to create that version of blahblah, we need to be able to quickly map that back to a defect and understand where that defect fits in in the stream of changes made for blahblah or for that component.

A typical support person in our team is supporting over a million lines of code. That is just the networking code, its drivers, and various other bits and pieces. There are probably a couple dozen such other teams supporting almost the same amount of code. Even knowing just the paths to the files is a challenge.


Posts: 474
Registered: Apr 08, 2008 11:40:52 PM Re: Direct Queries to CC Database
Posted: Nov 18, 2010 05:14:36 PM   in response to: pedz in response to: pedz's post As I guessed you might need to try a different approach...

For a start - if you were using ClearCase's UCM instead of vanilla ClearCase I think at least some of those features would be available straight out of the box. However I gather you are not doing that.

It isn't quite clear if you are using ClearQuest as well as ClearCase but you must be using something to track change requests and linking that information to ClearCase. Its hard answer without knowing this.

For some more generic approaches... In ClearCase you typically label the versions of everything that are part of a release.
So for example one of the ones you mentioned - "get the list of source files used to create that version..." (I assume "version" in this context is a release of the deployed product). You would do a find by the label. There are several ways to do this (find command of course is one). In this scenario (searching by label) I think you would find "find" is much faster.

It also means you can just get a view of the code as at any release quickly... if you labelled everything as REL3.1 just create a view and set the config spec to:element * REL3.1
If it is a dynamic view you will then be looking at the entire source tree as at that release immediately.

Find can be used to identify all the versions of files that changed between two labelled releases. This is a bit more complex because it needs three find queries to cover the changes, adds, and deletes.

For your defect related identifier questions we'd need to know how you are connecting code to defects.

Help

Use the search field to find all types of content in My developerWorks with that tag.

Use the slider bar to see more or fewer tags.

Popular tags shows the top tags for this particular type of content or application that you're viewing.

My tags shows your tags for this particular type of content or application that you're viewing.

Use the search field to find all types of content in My developerWorks with that tag. Use the slider bar to see more or fewer tags. Popular tags shows the top tags for this particular type of content or application that you're viewing. My tags shows your tags for this particular type of content or application that you're viewing.MoreLess 
Point your RSS reader here for a feed of the latest messages in all forums

View the original article here

Re: clearcase no response

This question is not answered.
Permlink Replies: 10 - Pages: 1 - Last Post: Nov 18, 2010 11:01 PM Last Post By: shingirl Threads: [ Previous | Next ]
Posts: 24
Registered: Dec 01, 2006 04:24:44 AM clearcase no response
Posted: Nov 15, 2010 10:02:20 AM when I open clearcase explorer,the status is always no response,3 hours have passed, there is still no responding. so, What is the cause of this phenomenon? How to solve this issue? Pls to help me.
Many thanks!
Posts: 38
Registered: Aug 16, 2010 10:26:56 AM Re: clearcase no response
Posted: Nov 15, 2010 01:52:15 PM   in response to: shingirl in response to: shingirl's post Hi shingirl,

I'd imediately look at the network communication. You leave out a number of details: are you at the same physical location as the server you are attempting to access, or are you operating over a LAN/WAN? A VPN perhaps?

Has this worked for you before? Do you get an error message that states -what- is not responding?

-Chris Moir
Inventa Technologies (at Aetna Insurance)


Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Re: clearcase no response
Posted: Nov 15, 2010 09:01:51 PM   in response to: ChrisMoir in response to: ChrisMoir's post Thanks for your kind reply
I use clearcase well before,suddenly appear such issue, no respond
I see Clearcase log on administration console,no error.
after I restart the computer, open the clearcase explorer ,appear no respond,
when I run cleartool lsvob command,
The error i am getting is
albd_rgy_get_entry call failed: RPC: Timed out
cleartool: Error: Trouble contacting registry on host "host1": timed out trying to communicate with ClearCase remote server.
Posts: 686
Registered: Jun 25, 2007 04:53:38 PM Re: clearcase no response
Posted: Nov 16, 2010 12:09:38 PM   in response to: shingirl in response to: shingirl's post Sounds to me like your ClearCase register server is not reachable from your CC client. What is the name of your CC registry server? Can you ping it from your client? Are other clients working fine with that registry server?

-Jeff Ng


Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Re: clearcase no response
Posted: Nov 17, 2010 02:54:16 AM   in response to: jeff98air in response to: jeff98air's post I can ping the cc registry server from the client and other clients working fine with that registry server.
The client working well before and now suddenly appears this issue.
Posts: 201
Registered: Jan 15, 2005 05:15:03 PM Re: clearcase no response
Posted: Nov 18, 2010 02:18:26 AM   in response to: shingirl in response to: shingirl's post I believe something has been installed recently that stops ClearCase Explorer to function correctly. I guess a iptables look-alike programme.

Ping uses ICMP port 8 called "echo" and this port is not stopped by any firewall unless you do so.

Pinging an address tells you whether that machine is on, not if the services are working.

ClearCase uses port 371 therefore I would suggest you to check your antivirus/firewall or whatever is installed locally by disabling it and see if ClearCase
starts to work again.

Additionally check whether port 27000 (default) is open. This is the license server's port.


Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Thanks for your kind reply and help.
But I'm confused. Could you tell me how to do these steps above mentioned.
Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Thanks for your kind reply and help.
But I'm confused. Could you tell me how to do these steps above mentioned?
Posts: 61
Registered: Nov 30, 2004 12:57:26 PM Re: clearcase no response
Posted: Nov 18, 2010 01:04:06 PM   in response to: shingirl in response to: shingirl's post Check to see if your Windows (or other vendor) firewall is running. A recent update may have enabled the service...

/sean


Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Re: clearcase no response
Posted: Nov 18, 2010 07:35:20 PM   in response to: S_Reynaud in response to: S_Reynaud's post McAfee is running and recently the user didn't install new program or software.
Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Re: clearcase no response
Posted: Nov 18, 2010 11:01:55 PM   in response to: shingirl in response to: shingirl's post server on Unix. the client works well on Unix, but there is the issue on Windows.Help

Use the search field to find all types of content in My developerWorks with that tag.

Use the slider bar to see more or fewer tags.

Popular tags shows the top tags for this particular type of content or application that you're viewing.

My tags shows your tags for this particular type of content or application that you're viewing.

Use the search field to find all types of content in My developerWorks with that tag. Use the slider bar to see more or fewer tags. Popular tags shows the top tags for this particular type of content or application that you're viewing. My tags shows your tags for this particular type of content or application that you're viewing.MoreLess 
Point your RSS reader here for a feed of the latest messages in all forums

View the original article here

what data to collect for migrate code from mainframe to clearcase

hi guys...

I am just curious what data or info.
I have to collect to migrate the code from mainframe to ClearCase.

Any tutorial will be really helpful.


View the original article here

Friday, November 19, 2010

Re: clearcase no response

This question is not answered.
Permlink Replies: 10 - Pages: 1 - Last Post: Nov 18, 2010 11:01 PM Last Post By: shingirl Threads: [ Previous | Next ]
Posts: 24
Registered: Dec 01, 2006 04:24:44 AM clearcase no response
Posted: Nov 15, 2010 10:02:20 AM when I open clearcase explorer,the status is always no response,3 hours have passed, there is still no responding. so, What is the cause of this phenomenon? How to solve this issue? Pls to help me.
Many thanks!
Posts: 38
Registered: Aug 16, 2010 10:26:56 AM Re: clearcase no response
Posted: Nov 15, 2010 01:52:15 PM   in response to: shingirl in response to: shingirl's post Hi shingirl,

I'd imediately look at the network communication. You leave out a number of details: are you at the same physical location as the server you are attempting to access, or are you operating over a LAN/WAN? A VPN perhaps?

Has this worked for you before? Do you get an error message that states -what- is not responding?

-Chris Moir
Inventa Technologies (at Aetna Insurance)


Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Re: clearcase no response
Posted: Nov 15, 2010 09:01:51 PM   in response to: ChrisMoir in response to: ChrisMoir's post Thanks for your kind reply
I use clearcase well before,suddenly appear such issue, no respond
I see Clearcase log on administration console,no error.
after I restart the computer, open the clearcase explorer ,appear no respond,
when I run cleartool lsvob command,
The error i am getting is
albd_rgy_get_entry call failed: RPC: Timed out
cleartool: Error: Trouble contacting registry on host "host1": timed out trying to communicate with ClearCase remote server.
Posts: 686
Registered: Jun 25, 2007 04:53:38 PM Re: clearcase no response
Posted: Nov 16, 2010 12:09:38 PM   in response to: shingirl in response to: shingirl's post Sounds to me like your ClearCase register server is not reachable from your CC client. What is the name of your CC registry server? Can you ping it from your client? Are other clients working fine with that registry server?

-Jeff Ng


Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Re: clearcase no response
Posted: Nov 17, 2010 02:54:16 AM   in response to: jeff98air in response to: jeff98air's post I can ping the cc registry server from the client and other clients working fine with that registry server.
The client working well before and now suddenly appears this issue.
Posts: 201
Registered: Jan 15, 2005 05:15:03 PM Re: clearcase no response
Posted: Nov 18, 2010 02:18:26 AM   in response to: shingirl in response to: shingirl's post I believe something has been installed recently that stops ClearCase Explorer to function correctly. I guess a iptables look-alike programme.

Ping uses ICMP port 8 called "echo" and this port is not stopped by any firewall unless you do so.

Pinging an address tells you whether that machine is on, not if the services are working.

ClearCase uses port 371 therefore I would suggest you to check your antivirus/firewall or whatever is installed locally by disabling it and see if ClearCase
starts to work again.

Additionally check whether port 27000 (default) is open. This is the license server's port.


Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Thanks for your kind reply and help.
But I'm confused. Could you tell me how to do these steps above mentioned.
Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Thanks for your kind reply and help.
But I'm confused. Could you tell me how to do these steps above mentioned?
Posts: 61
Registered: Nov 30, 2004 12:57:26 PM Re: clearcase no response
Posted: Nov 18, 2010 01:04:06 PM   in response to: shingirl in response to: shingirl's post Check to see if your Windows (or other vendor) firewall is running. A recent update may have enabled the service...

/sean


Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Re: clearcase no response
Posted: Nov 18, 2010 07:35:20 PM   in response to: S_Reynaud in response to: S_Reynaud's post McAfee is running and recently the user didn't install new program or software.
Posts: 24
Registered: Dec 01, 2006 04:24:44 AM Re: clearcase no response
Posted: Nov 18, 2010 11:01:55 PM   in response to: shingirl in response to: shingirl's post server on Unix. the client works well on Unix, but there is the issue on Windows.Help

Use the search field to find all types of content in My developerWorks with that tag.

Use the slider bar to see more or fewer tags.

Popular tags shows the top tags for this particular type of content or application that you're viewing.

My tags shows your tags for this particular type of content or application that you're viewing.

Use the search field to find all types of content in My developerWorks with that tag. Use the slider bar to see more or fewer tags. Popular tags shows the top tags for this particular type of content or application that you're viewing. My tags shows your tags for this particular type of content or application that you're viewing.MoreLess 
Point your RSS reader here for a feed of the latest messages in all forums

View the original article here