문제

안녕하세요,

요즘 CC-Land에 다소 갇혀있는 것처럼 보이지만 적절한 CC 취급에 관한 마지막 질문이 있습니다.

CC View Creation Wizard를 사용할 때는 컴퓨터에서 적절한 스냅 샷보기를 완벽하게 만들 수 있지만 MKView 명령과 동일하게하려고 할 때는 실패합니다 ... 실패합니다.

View Creation Wizard를 사용하면 다음 뷰 다음에 다음과 같이합니다.

cleartool> lsview battjo6r_view2
  battjo6r_view2       \\Eh40yd4c\Views\battjo6r_view2.vws
cleartool> lsview -long battjo6r_view2
Tag: battjo6r_view2
  Global path: \\Eh40yd4c\Views\battjo6r_view2.vws
  Server host: Eh40yd4c
  Region: CT_WORK
  Active: NO
  View tag uuid:f34cf43f.b4d048df.845d.ed:21:a2:9c:45:ff
View on host: Eh40yd4c
View server access path: D:\Views\battjo6r_view2.vws
View uuid: f34cf43f.b4d048df.845d.ed:21:a2:9c:45:ff
View attributes: snapshot
View owner: WW005\battjo6r

그러나 수동으로보기를 만들려고 할 때

mkview -snapshot -tag battjo6r_view2 -vws \\Eh40yd4c\Views\battjo6r_view2.vws -host Eh40yd4c -hpath D:\Views\battjo6r_view2.vws -gpath \\Eh40yd4c\Views\battjo6r_view2.vws battjo6r_view2

... 다음 오류가 발생합니다.

cleartool> mkview -snapshot -tag battjo6r_view2 -vws \\Eh40yd4c\Views\battjo6r_view2.vws -host Eh40yd4c -hpath D:\Views\battjo6r_view2.vws -gpath \\Eh40yd4c\Views\battjo6r_view2.vws battjo6r_view2
Created view.
Host-local path: Eh40yd4c:D:\Views\battjo6r_view2.vws
Global path:     \\Eh40yd4c\Views\battjo6r_view2.vws
cleartool: Error: Unable to find view by uuid:6f99f7ae.6a5d40e4.ba32.37:8e:e5:a4:ed:18, last known at "<viewhost>:<stg_path>".
cleartool: Error: Unable to establish connection to snapshot view "6f99f7ae.6a5d40e4.ba32.37:8e:e5:a4:ed:18": ClearCase object not found
cleartool: Warning: Unable to open snapshot view "D:\SnapShotViews\battjo6r_view2".
cleartool: Error: Unable to create snapshot view "battjo6r_view2".
Removing the view ...

왜 이런 일이 일어나고 있는지 아십니까? 내가 뭔가를 놓치고 있습니까?

도움이 되었습니까?

해결책

이것은 일반적으로 Albd가 실행되지 않기 때문입니다.
사실, IT ~이다 달리기, 그러나 Clearcase는 잘못된 호스트에게 연락하려고합니다.

여기: Host-local path: Eh40yd4c:D:\Views\battjo6r_view2.vws 매우 의심 스럽다.

노력하다:

mkview -snapshot -tag battjo6r_view2 -vws \\Eh40yd4c\Views\battjo6r_view2.vws -host Eh40yd4c -hpath \\Eh40yd4c\Views\battjo6r_view2.vws -gpath \\Eh40yd4c\Views\battjo6r_view2.vws battjo6r_view2

즉, hpath = gpath.

또는 첫 번째 명령이 실패하면 (더 간단하고 작동 할 수 있음)

mkview -snapshot -tag battjo6r_view2 -vws \\Eh40yd4c\Views\battjo6r_view2.vws battjo6r_view2

바라건대, Clearcase는 호스트, HPATH 및 GPATH 자체를 결정할 수 있기를 바랍니다.

다른 팁

cleartool mkview -snapshot -tag <tag_name> -vws \\<computer_name>\<views_folder>\<view_name> <path_of_localstorage>

자세한 내용은 다음과 같습니다 이 링크.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top