ssh login cvs


 
Thread Tools Search this Thread
Operating Systems Linux Ubuntu ssh login cvs
# 1  
Old 04-29-2011
ssh login cvs

Hello,

I want to access a cvs server but I need to specify another user name i.e

suppose that my user account is AAA and I can log on to the cvs server using another account BBB i.e

AAA@local:~/Downloads$ ssh cvs
Permission denied (publickey).

But I can login to the system using this
AAA@local:~/Downloads$ ssh BBB@cvs

Now I want to access the cvs repository
AAA@local:~/Downloads$ cvs checkout cvsfolder
Permission denied (publickey).
cvs [checkout aborted]: end of file from server (consult above messages if any)

How can I tell the cvs to use account BBB to access the cvs server, or can I configure this in an automatic way

---------- Post updated at 05:53 AM ---------- Previous update was at 05:43 AM ----------

It is solved, Thanks
# 2  
Old 04-29-2011
One neat trick is to copy your entire .ssh/ direcotry, scp -rp, to the other id/host, and then you are you, except any saved localhost/127.0.0.1 lines, which it will tell you about if you use them.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Getting ssh to try login only once

spawn ssh remotehost -l skysmart when the password is incorrect, this will attempt to log in 2 more times, before it exits. is there an option I can pass to ssh that'll make it try only once and will then abort immediately if the password is incorrect? something like: spawn ssh... (1 Reply)
Discussion started by: SkySmart
1 Replies

2. Shell Programming and Scripting

ssh login

Hi, I am trying to login Server2 from server1 in a shell script and need to perfrom few commands, Below is the command i used to login to server2 from server1 ssh -l username server2 However everytime it executes it asking for password. How do write a script in such way it takes... (1 Reply)
Discussion started by: ch33ry
1 Replies

3. HP-UX

telnet login successful ,but ssh can not login

why I can login by telnet using root account but when i use login by ssh using root account it is not successful ,is it different password i am sure ssh service is started (2 Replies)
Discussion started by: alert0919
2 Replies

4. Shell Programming and Scripting

Automate CVS login using shell script

Hi, Can anyone pls help me to automate login to cvs. I basically want to login to cvs and update a file. the script always gets to the login and returns the prompt for a password. Is there any way to send the password in the script itself. Here is the script: #!/bin/ksh... (0 Replies)
Discussion started by: raghu_shekar
0 Replies

5. Cybersecurity

cvs [login aborted]

Hi, I installed CVSNT on PC and trying to checkout files from/on linux box. Logging in to :pserver:user1@16.145.134.210:22/DBMONITOR/CVSROOT CVS password: cvs : unrecognized auth response from 16.145.134.210: SSH-2.0-OpenSSH_5.4 ssh is ok. $ ssh user1@16.145.134.210... (1 Reply)
Discussion started by: zam
1 Replies

6. OS X (Apple)

What settings are required for login to CVS using Terminal in Mac OS X?

Hi All, I want to login to CVS using terminal. I am executing the following command in the terminal :- export CVSROOT=: pserver:ags_rd@istcvs.corp.apple.com:/istcvs/CVSHOME cvs login But i get the following error : Afreens-iMac:buildTest Afreen$ export CVSROOT=:... (1 Reply)
Discussion started by: Afreen
1 Replies

7. Shell Programming and Scripting

What settings are required for login to CVS using Terminal in Mac OS X?

Hi All, I want to login to CVS using terminal. I am executing the following command in the terminal :- export CVSROOT=: pserver:ags_rd@istcvs.corp.apple.com:/istcvs/CVSHOME cvs login But i get the following error : Afreens-iMac:buildTest Afreen$ export CVSROOT=:... (3 Replies)
Discussion started by: Afreen
3 Replies

8. UNIX for Dummies Questions & Answers

CVS and ssh tunnelling

Hi, I know my way around CVS but I am new to ssh tunneling. My boss has asked me to create a ssh tunnel such that when clients connect to the CVS server they do so having ssh encrypt the transmission. All the solutions I have found on the web suggest that ssh tunneling has to be setup on the... (3 Replies)
Discussion started by: mojoman
3 Replies

9. Shell Programming and Scripting

ssh login help

I would like to login to host and once logged into host would like to run script. i.e "ssh hostname -l username /opt/share/scripts/vol" Can someone please have this run as script .. Many Thanks -sam (1 Reply)
Discussion started by: sam786
1 Replies

10. Red Hat

help with ssh login

hi, to ssh login i give the command.. root@localhost~] # ssh ip_add it allows me to login on a remote machine if i know the password, but i work on wireless network so the ip keeps on changing for the remote machine, how can i access that machine with some unique name , that does not changes.i... (3 Replies)
Discussion started by: ankita tux
3 Replies
Login or Register to Ask a Question