3

I use Bonobo Git Server, I want to move my repositories to another drive.

currently the repositories are in C:\inetpub\wwwroot\Bonobo.Git.Server\App_Data\Repositories. How can I move them to D:\ drive?

Hossein Rashno
  • 3,073
  • 1
  • 25
  • 49

3 Answers3

3

You can tell Bonobo where the repositories are, on the 'settings' page. So just move your repositories directory to d:\ and go to the Bonobo settings and change them to match. You don't need to try and fool Bonobo with a symlink.

You may need to fiddle with disk access permissions for whatever user your bonobo app pool runs under, same as you would with any IIS app which needs access to the file system.

Will Dean
  • 39,055
  • 11
  • 90
  • 118
1

If you have administrative privileges on that machine, you can see if making a directory symlink.

Move your C:\inetpub\wwwroot\Bonobo.Git.Server\App_Data\Repositories folder first (so App_Data\ has no longer the Repositories folder).

Then:

# In an Administrtor CMD shell:
mklink /D D:\path\top\Repositories C:\inetpub\wwwroot\Bonobo.Git.Server\App_Data\Repositories

That way, all the current Bonobo/IIS settings remain the same.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
0

go to the setting and give fully qualified path(E:\back-Up\r) in the Repository Directory and save the changes, hopefully it help you.

Fazal
  • 99
  • 1
  • 6