Sponsored Content
Full Discussion: Rsync failing
Operating Systems Solaris Rsync failing Post 302950244 by solaris_1977 on Wednesday 22nd of July 2015 07:06:29 PM
Old 07-22-2015
Rsync failing

Hi,

I am running a rsync command from one server to another server. Source server is having user - bfdeploy and destination user is ftcjbd. Though ftcjbd is owner of /ftc/envs/static/includes/vehicles on destination server, it is still giving error "mkstemp - Permission denied". I am not able to figure out, what is failing in between, even if I make it 777. Somebody help.
Code:
[bfdeploy@vmgdft01 ~]$ rsync -r -v -u --progress -e ssh ftcjbd@vmgdfd01:/ftc/envs/static/includes/vehicles/ /ftc/envs/static/includes/vehicles/
receiving incremental file list
rsync: mkstemp "/ftc/envs/static/includes/vehicles/.test2_file.bvfz5X" failed: Permission denied (13)
           0 100%    0.00kB/s    0:00:00 (xfer#1, to-check=3/7)
 sent 30 bytes  received 217 bytes  494.00 bytes/sec
total size is 36368  speedup is 147.24
rsync error: some files/attrs were not transferred (see previous errors) (code 23) at main.c(1518) [generator=3.0.9]
[bfdeploy@vmgdft01 ~]$
 
 On vmgdfd01 :-
 [root@vmgdfd01 ~]# ls -ld /ftc/envs/static/includes/vehicles/
drwxrwxrwx 2 ftcjbd ftc 1024 Jul 22 15:48 /ftc/envs/static/includes/vehicles/
[root@vmgdfd01 ~]#

 

10 More Discussions You Might Find Interesting

1. HP-UX

dd command failing

I am new to HP-UX. I have an 8GB drive that is my root drive, contained in a Volume Group. I would like to clone that drive to another drive, which is 18.4GB. The other drive is not in a volume group. I am using this simple command:# dd if=/dev/dsk/c0t6d0 of=/dev/dsk/c0t5d0The command... (4 Replies)
Discussion started by: emsecrist
4 Replies

2. Shell Programming and Scripting

ssh - rm failing

Hi, Please help me... I am creating a string of filenames with absolute path and deleting those files situated in the remote server using ssh .. but it doesnot work.. Can anyone help me... here is my code for FileName in ${myDire} do Tmp=`basename... (4 Replies)
Discussion started by: shihabvk
4 Replies

3. Solaris

umount is failing

I am trying to umount a NFS share. When I do the following: # umount syrupg21 umount: /oebs/syrupg21: device is busy device bussy so I like to check what is working on the system.... # fuser -muv /oebs/syrupg21/ # So no locks should be there... any clue? Regards, Johan... (3 Replies)
Discussion started by: suntac
3 Replies

4. AIX

failing drive

I posted some errpt output,see Phone Support, that this forum graciously looked at and confirmed what we suspected, that one of our RAID5 disks is failing. I have a replacement, but am having trouble downing the old disk. If I try and run Remove a Disk from smit, it says the device is busy. The... (4 Replies)
Discussion started by: markper
4 Replies

5. UNIX for Advanced & Expert Users

sudo using at failing.

Hi, I'm hopin' ya can give me an idea or two here. I'm writing a file transfer tracking program. Users login via FTP or https. These users have NO shell access. I'll get to that in a minute. When they upload or download a file, a script is invoked to log the transfer in a database,... (9 Replies)
Discussion started by: mph
9 Replies

6. Shell Programming and Scripting

Display which test in the if/else is failing

So I have a script that monitors my drives (/dev/sda and /dev/sdb) using smartctl (smartmontools). I'm by no means an expert in scripting, so this was my attempt at creating a way to email me if one of the values in smartctl output goes above a set threshold. My question is, I'm trying to edit... (5 Replies)
Discussion started by: bound4h
5 Replies

7. Shell Programming and Scripting

ps -ef failing sometimes

Hi Everyone, we have a shell script "DLP_recv.sh" that has below command which is supposed to return the number of active instances of itself, which means of there is no other instance then commad would return 1 (for the current instance). The problem is that it sometimes it returns 0 which is... (3 Replies)
Discussion started by: guycool
3 Replies

8. AIX

Backupios Failing

Hi Team, Please help me to resolve the below backup (backupios) issue on my VIO. My VIO is a SAN booted from EMC and powerpath has been installed on this. We already run pprootdev fix and linked the /dev/ipldevice to rootvg hdisk. ... (2 Replies)
Discussion started by: Nazar_KA
2 Replies

9. UNIX for Beginners Questions & Answers

Sorting failing cause not known

Hi All, Below is the message I am getting and the process is failing after the child process. The exit status is 11 and the job it is doing is sorting. Is it the status 11 is because of space unavailability. I am sure about the status 11. Below is the success message I got last on... (4 Replies)
Discussion started by: arunkumar_mca
4 Replies

10. 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
ARCHMAGE(1)						      General Commands Manual						       ARCHMAGE(1)

NAME
archmage - CHM(Compiled HTML) Decompressor. SYNOPSIS
archmage chmfile directory archmage -p port chmfile DESCRIPTION
This manual page documents briefly the archmage command. This manual page was written for the Debian distribution because the original program does not have a manual page. arCHMage is an extensible reader and decompiler for files in the CHM format. This is the format used by Microsoft HTML Help, and is also known as Compiled HTML. arCHMage is based on python-chm binding to chmlib from GnoCHM project. USAGE
There is three ways to use arCHMage package now: 1) Extract .chm to directory (directory will be created): archmage <chmfile> <directory> 2) Run as http-server, which will publish chm file contents on specified port: archmage -p <port> <chmfile> 3) Tune your apache to publish chm file contents if there is trailing slash in request to that file (you will need working mod_python for that): Add that lines to your httpd.conf: AddHandler python-program .chm PythonHandler archmod.mod_chm Restart apache. Let's suppose, you have file sample.chm in DocumentRoot of your apache. After that tuning you can receive raw chm file, if you point your browser to http://yourserver/sample.chm or you can view chm file on the fly if you point your browser to http://yourserver/sample.chm/ (note trailing slash) FILES
/etc/archmage/arch.conf System-wide configuration file. SEE ALSO
arCHMage Home Page: http://archmage.sf.net AUTHOR
arCHMage was written by Eugeny Korekin <az@ftc.ru> This manual page was written by Basil Shubin <bashu@users.sourceforge.net>, for the Debian GNU/Linux system (but may be used by others). February 24, 2006 ARCHMAGE(1)
All times are GMT -4. The time now is 04:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy