Sponsored Content
Operating Systems AIX parsing error when I run RSYNC Post 302351885 by tfort73 on Thursday 10th of September 2009 12:29:34 AM
Old 09-10-2009
Question parsing error when I run RSYNC

This is what I get when I run the RSYNC command. I just created brand new ssh2 rsa keys.

Code:
warning: /come/out/and/play/.ssh2/id_rsa_2048_a: 4: parsing line failed.
warning: /come/out/and/play/.ssh2/id_rsa_2048_a: 5: parsing line failed.
warning:   "   "   "   "   "   "        "      "         "   "    6-22  " 
mickeys password:

I do not understand this at all.

Any help please!

-Thanks!!
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Rsync Error

hi I have set up a rsync between to linux servers. One running Red Hat the other suse. The data is coping over but the sync using the delete option is not working. Output from command rsync -aWv --stats progress --delete /prod/CREATIVE2/WORK_IN_PROGRESS_PEARTREE 5.0.3.30:/raid1/PRODUCTION/... (0 Replies)
Discussion started by: treds
0 Replies

2. Shell Programming and Scripting

[BASH] rsync - error on destination

Hi everyone, and thanks to all for your assistance. I have a problem with the rsync command. I want to make a backup of a "source" directory in a "destination" directory. I want to specify: "absolute path of destination" (identified by a ~): ~/Destination or a "relative path of... (0 Replies)
Discussion started by: PaganoM
0 Replies

3. UNIX for Dummies Questions & Answers

rsync Error

hi I am running a rsync from one of our remote sites to the main building. i am using this command to run betwwen 2 linux servers rsync -aWv -e ssh --stats progress --delete --ignore-errors /raid1/PRODUCTION/WORK_IN_PROGRESS_PEARTREE/ 5.0.2.245:/prod2/RSYNCS/CREATIVE2/ >>... (2 Replies)
Discussion started by: treds
2 Replies

4. Solaris

rsync - remote connection error

Hi , We have installed rsync in two Solaris boxes, when we try to sync files from one machine to another.. it is giving the following error. ld.so.1: rsync: fatal: libiconv.so.2: open failed: No such file or directory rsync: connection unexpectedly closed (0 bytes received so far) rsync... (1 Reply)
Discussion started by: MVEERA
1 Replies

5. UNIX for Advanced & Expert Users

Error while running Rsync through Crontab

hi All, i have implemented Rsync in my source and destination server. while running through command prompt it is working fine: ksh rsync_bravo_db.ksh usa0300uz1252.apps.mc.xerox.com /uv1402/u207/home/bravodba/bin/rsync-3.0.9/config/mrsx_rsync.cfg but later on i created a another ksh and... (4 Replies)
Discussion started by: lovelysethii
4 Replies

6. Shell Programming and Scripting

Error while running Rsync

hi All, i am getting some error while running Rsync, and unable to find error at Google even, could anyone help me here please. ---------- Post updated 08-31-13 at 07:47 AM ---------- Previous update was 08-30-13 at 04:35 PM ---------- above problem got resolved because it was not... (4 Replies)
Discussion started by: lovelysethii
4 Replies

7. UNIX for Advanced & Expert Users

Rsync error

this rsync from one day to the other simply no longer works, the key is ok, permissions and other ... with the same key can not connect via SSH which shows that there are no errors, but rsync it just does not work. :confused: root@san # rsync -avz -e "ssh -p 22 -i /root/.ssh/rsync"... (4 Replies)
Discussion started by: c0i0t3
4 Replies

8. Shell Programming and Scripting

Rsync Error: rsync: link_stat failed: No such file or directory (2)

I wish to copy all the files & folder under /web/Transfer_Files/data/ on mymac1 (Linux) to remote server mybank.intra.com (Solaris 10) /tmp/ location I am using Ansible tool synchronize module which triggers the unix rsync command as below:rsync --delay-updates -F --compress --archive --rsh=ssh... (2 Replies)
Discussion started by: mohtashims
2 Replies

9. HP-UX

Rsync an rcp error

Hi, I have installed rsync (together with its dependencies) in both source and destination HPUX servers (V 11.31). However when I attempt to copy files over (as user root) I get this error : # rsync -avz ./* root@10.97.131.4:/tmp/copy Password: sh: rsync: not found. rsync: connection... (5 Replies)
Discussion started by: anaigini45
5 Replies

10. Shell Programming and Scripting

Help 'speeding' up this 'parsing' script - taking 24+ hours to run

Hi, I've written a ksh script that read a file and parse/filter/format each line. The script runs as expected but it runs for 24+ hours for a file that has 2million lines. And sometimes, the input file has 10million lines which means it can be running for more than 2 days and still not finish.... (9 Replies)
Discussion started by: newbie_01
9 Replies
SSH2_PUBLICKEY_LIST(3)							 1						    SSH2_PUBLICKEY_LIST(3)

ssh2_publickey_list - List currently authorized publickeys

SYNOPSIS
array ssh2_publickey_list (resource $pkey) DESCRIPTION
List currently authorized publickeys. PARAMETERS
o $pkey - Publickey Subsystem resource RETURN VALUES
Returns a numerically indexed array of keys, each of which is an associative array containing: name, blob, and attrs elements. Publickey elements +----------+---------------------------------------------------+ |Array Key | | | | | | | Meaning | | | | +----------+---------------------------------------------------+ | name | | | | | | | Name of algorithm used by this publickey, for | | | example: ssh-dss or ssh-rsa. | | | | | blob | | | | | | | Publickey blob as raw binary data. | | | | | attrs | | | | | | | Attributes assigned to this publickey. The most | | | common attribute, and the only one supported by | | | publickey version 1 servers, is comment, which | | | may be any freeform string. | | | | +----------+---------------------------------------------------+ EXAMPLES
Example #1 Listing authorized keys with ssh2_publickey_list(3) <?php $ssh2 = ssh2_connect('shell.example.com', 22); ssh2_auth_password($ssh2, 'jdoe', 'secret'); $pkey = ssh2_publickey_init($ssh2); $list = ssh2_publickey_list($pkey); foreach($list as $key) { echo "Key: {$key['name']} "; echo "Blob: " . chunk_split(base64_encode($key['blob']), 40, " ") . " "; echo "Comment: {$key['attrs']['comment']} "; } ?> The above example will output: Key: ssh-rsa Blob: AAAAB3NzaC1yc2EAAAABIwAAAIEA5HVt6VqSGd5P TrLRdjNONxXH1tVFGn0Bd26BF0aCP9qyJRlvdJ3j 4WBeX4ZmrveGrjMgkseSYc4xZ26sDHwfL351xjza LpipuBGRrw17mWVBhuCExo476ri5tQFzbTc54VE HYckxQ16CjSTibI5X69GmnYC9PNqEYq/1TP+HF10 Comment: John's Key Key: ssh-rsa Blob: AAAAB3NzaHVt6VqSGd5C1yc2EAAAABIwA232dnJA AIEA5HVt6VqSGd5PTrLRdjNONxX/1TP+HF1HVt6V qSGd50H1tVFGn0BB3NzaC1yc2EAd26BF0aCP9qyJ RlvdJ3j4WBeX4ZmrveGrjMgkseSYc4xZ26HVt6Vq SGd5sDHwfL351xjzaLpipuBGB3NzaC1yc2EA/1T Comment: Alice's Key NOTES
Note The public key subsystem is used for managing public keys on a server to which the client is already authenticated. To authenticate to a remote system using public key authentication, use the ssh2_auth_pubkey_file(3) function instead. SEE ALSO
ssh2_publickey_init(3), ssh2_publickey_add(3), ssh2_publickey_remove(3). PHP Documentation Group SSH2_PUBLICKEY_LIST(3)
All times are GMT -4. The time now is 12:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy