Hello,
I am trying to dump the svn repository in the jump box.
I use the command:
sudo svnadmin dump /var/data/projects/svn/project > /storage/test.dmp
unfortunately something goes wrong and I receive the message:
--bash: /storage/test/test.dmp: Permission denied
while I have created the test folder myself and I am able to create any text file using nano in that folder.
what do I wrong and how should I create a dump of the svn repository?
Thanks in advance
Walter
dump svn repository
Hi Walter,
This is one of those silly UNIX command line things. The sudo only applies to the part of the command BEFORE the ">..." So the svnadmin command is being run as root, but the redirection is is still run as your current user. You have at least three options:
Austin