Skip to main content



      Home
Home » Newcomers » Newcomers » pserver vs extssh
pserver vs extssh [message #103416] Tue, 20 September 2005 19:56 Go to next message
Eclipse UserFriend
Originally posted by: jbailo.vestcom.com

I set up a cvs repository on my Suse 9.3 workstation.

I can connect to it from my Windows workstation, using Eclipse, using
extssh.

I can also connect to it with my Linux Eclipse locally ( localhost ) but
it doesn't let me use the pserver protocol.
Re: pserver vs extssh [message #103478 is a reply to message #103416] Wed, 21 September 2005 03:12 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: liden.carmen.se

"John Bailo" <jbailo@vestcom.com> skrev i meddelandet
news:dgq7k2$hov$1@news.eclipse.org...
>
> I set up a cvs repository on my Suse 9.3 workstation.
>
> I can connect to it from my Windows workstation, using Eclipse, using
> extssh.
>
> I can also connect to it with my Linux Eclipse locally ( localhost ) but
> it doesn't let me use the pserver protocol.
>

Have you set up/configured the CVS password server?

I have a related question: Why is there no option for connecting to CVS
locally (without pserver)?
Due to this (and since pserver does not seem to work) I must use extssh
(despite being on the same network as CVS). That works from within Eclipse,
but I can't do manual CVS operations in the workspace (e.g. cvs update),
because it says:
cvs update: Unknown method (`extssh') in CVSROOT.
cvs [update aborted]: Bad CVSROOT:
`:extssh:liden@localhost:/carm/2_CVS'.
I can of course explicitly state the root (e.g. cvs -d /carm/2_CVS update)
but that is a nuisance. Any suggestions?

/Tomas
Re: pserver vs extssh [message #103494 is a reply to message #103478] Wed, 21 September 2005 03:56 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: ziya.ripe.net

Hi there,

Here is a workaround to use CVS locally on the file system:

1 Write a little shell script to simply invoke 'cvs server'
file: cvs_server.sh
======================
#!/bin/sh
cvs server
======================

2 Make sure your file is executable:
(E.g. 'chmod +x cvs_server.sh')

3 In Eclipse go to:
Widows>Preferences>Team>CVS>Ext Connection Method
Enter full path of your script
(E.g. '/home/ziya/bin/cvs_server.sh')

You are ready to go! While adding a new CVS repository in
Eclipse make sure to choose:

1 Connection type 'ext'

2 Enter your repository path correctly (E.g. '/var/cvsroot')
and fill other mandatory fields with anything!

Hope it works for you too.

Cheers,

--Ziya

Tomas Lidén wrote:
> "John Bailo" <jbailo@vestcom.com> skrev i meddelandet
> news:dgq7k2$hov$1@news.eclipse.org...
>
>>I set up a cvs repository on my Suse 9.3 workstation.
>>
>>I can connect to it from my Windows workstation, using Eclipse, using
>>extssh.
>>
>>I can also connect to it with my Linux Eclipse locally ( localhost ) but
>> it doesn't let me use the pserver protocol.
>>
>
>
> Have you set up/configured the CVS password server?
>
> I have a related question: Why is there no option for connecting to CVS
> locally (without pserver)?
> Due to this (and since pserver does not seem to work) I must use extssh
> (despite being on the same network as CVS). That works from within Eclipse,
> but I can't do manual CVS operations in the workspace (e.g. cvs update),
> because it says:
> cvs update: Unknown method (`extssh') in CVSROOT.
> cvs [update aborted]: Bad CVSROOT:
> `:extssh:liden@localhost:/carm/2_CVS'.
> I can of course explicitly state the root (e.g. cvs -d /carm/2_CVS update)
> but that is a nuisance. Any suggestions?
>
> /Tomas
>
>
>
>
Re: pserver vs extssh [message #103512 is a reply to message #103494] Wed, 21 September 2005 05:48 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: liden.carmen.se

Thanks for the tip - that would work from within Eclipse.
But I guess Eclipse will still create something like
":ext:user@host:/cvs_repository" in all CVS/Root files, which is the cause
of my trouble. I would like Eclipse to have a local option that simply
creates "/cvs_repository" in the CVS/Root files.
/Tomas

"Ziya Suzen" <ziya@ripe.net> skrev i meddelandet
news:dgr3nn$iig$1@news.eclipse.org...
> Hi there,
>
> Here is a workaround to use CVS locally on the file system:
>
> 1 Write a little shell script to simply invoke 'cvs server'
> file: cvs_server.sh
> ======================
> #!/bin/sh
> cvs server
> ======================
>
> 2 Make sure your file is executable:
> (E.g. 'chmod +x cvs_server.sh')
>
> 3 In Eclipse go to:
> Widows>Preferences>Team>CVS>Ext Connection Method
> Enter full path of your script
> (E.g. '/home/ziya/bin/cvs_server.sh')
>
> You are ready to go! While adding a new CVS repository in
> Eclipse make sure to choose:
>
> 1 Connection type 'ext'
>
> 2 Enter your repository path correctly (E.g. '/var/cvsroot')
> and fill other mandatory fields with anything!
>
> Hope it works for you too.
>
> Cheers,
>
> --Ziya
>
> Tomas Lid
Re: pserver vs extssh [message #105140 is a reply to message #103512] Tue, 27 September 2005 03:38 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: ziya.ripe.net

Tomas Lidén wrote:
> Thanks for the tip - that would work from within Eclipse.
> But I guess Eclipse will still create something like
> ":ext:user@host:/cvs_repository" in all CVS/Root files, which is the cause

Yes. You are right! I tried to set CVSROOT etc. but couldn't get around
that!

--Ziya

> of my trouble. I would like Eclipse to have a local option that simply
> creates "/cvs_repository" in the CVS/Root files.
> /Tomas
>
> "Ziya Suzen" <ziya@ripe.net> skrev i meddelandet
> news:dgr3nn$iig$1@news.eclipse.org...
>
>>Hi there,
>>
>>Here is a workaround to use CVS locally on the file system:
>>
>>1 Write a little shell script to simply invoke 'cvs server'
>> file: cvs_server.sh
>> ======================
>> #!/bin/sh
>> cvs server
>> ======================
>>
>>2 Make sure your file is executable:
>> (E.g. 'chmod +x cvs_server.sh')
>>
>>3 In Eclipse go to:
>> Widows>Preferences>Team>CVS>Ext Connection Method
>> Enter full path of your script
>> (E.g. '/home/ziya/bin/cvs_server.sh')
>>
>>You are ready to go! While adding a new CVS repository in
>>Eclipse make sure to choose:
>>
>>1 Connection type 'ext'
>>
>>2 Enter your repository path correctly (E.g. '/var/cvsroot')
>> and fill other mandatory fields with anything!
>>
>>Hope it works for you too.
>>
>>Cheers,
>>
>>--Ziya
>>
>>Tomas Lidén wrote:
>>
>>>"John Bailo" <jbailo@vestcom.com> skrev i meddelandet
>>>news:dgq7k2$hov$1@news.eclipse.org...
>>>
>>>
>>>>I set up a cvs repository on my Suse 9.3 workstation.
>>>>
>>>>I can connect to it from my Windows workstation, using Eclipse, using
>>>>extssh.
>>>>
>>>>I can also connect to it with my Linux Eclipse locally ( localhost ) but
>>>> it doesn't let me use the pserver protocol.
>>>>
>>>
>>>
>>>Have you set up/configured the CVS password server?
>>>
>>>I have a related question: Why is there no option for connecting to CVS
>>>locally (without pserver)?
>>>Due to this (and since pserver does not seem to work) I must use extssh
>>>(despite being on the same network as CVS). That works from within
>
> Eclipse,
>
>>>but I can't do manual CVS operations in the workspace (e.g. cvs update),
>>>because it says:
>>> cvs update: Unknown method (`extssh') in CVSROOT.
>>> cvs [update aborted]: Bad CVSROOT:
>>>`:extssh:liden@localhost:/carm/2_CVS'.
>>>I can of course explicitly state the root (e.g. cvs -d /carm/2_CVS
>
> update)
>
>>>but that is a nuisance. Any suggestions?
>>>
>>>/Tomas
>>>
>>>
>>>
>>>
>
>
>
Re: pserver vs extssh [message #105198 is a reply to message #105140] Tue, 27 September 2005 05:17 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: liden.carmen.se

"Ziya Suzen" <ziya@ripe.net> skrev i meddelandet
news:dhassq$g9j$1@news.eclipse.org...
> Tomas Lid
Re: pserver vs extssh [message #113482 is a reply to message #105198] Tue, 01 November 2005 02:39 Go to previous message
Eclipse UserFriend
Originally posted by: liden.carmen.se

"Tomas Lid
Previous Topic:Java Method Recognition
Next Topic:'Ctrl-C' in a console
Goto Forum:
  


Current Time: Sun May 11 07:31:04 EDT 2025

Powered by FUDForum. Page generated in 0.08347 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top