​who can help me to run this image correctly?

    • Offizieller Beitrag

    Now that I've created the repository, I have to create and configure the host (the site) that will respond to HTTP calls made by our SVN clients. how?

    Why do your svn clients have to use http? tortoisesvn supports svn protocol that can talk directly to svnserve.

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

    • Offizieller Beitrag

    So how do I access the repository from TortoiseSVN?

    What ever url you were going to use with http can be replaced with svn:


    http://server/reponame becomes svn://server/reponame


    If you need to know more, you will need to search for it.

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

    • Offizieller Beitrag

    I tried to access the repository (I called it "vbrepo") but TortoiseSVN can't find the host: svn://serversvn/vbrepo

    Your windows system isn't resolving the name serversvn. Try replacing it with the systems ip address and see if it works.

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

    • Offizieller Beitrag

    Sorry, I don't have time for an svn tutorial. I normally would tell people not to use it.


    And that ip address is the docker ip address range. When not using macvlan, each container gets assigned and local address from docker. You cannot connect to this range. That is why you have to forward ports on the host.

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

  • Sorry, I don't have time for an svn tutorial. I normally would tell people not to use it.


    And that ip address is the docker ip address range. When not using macvlan, each container gets assigned and local address from docker. You cannot connect to this range. That is why you have to forward ports on the host.

    do I have to do port forwarding from docker?

    • Offizieller Beitrag

    publish 3690:3690 is doing that.

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

    • Offizieller Beitrag

    I thought I did everything correctly, where am I wrong?

    Just to reiterate that I don't have time to teach anyone how to use svn. But here was my quick test:


    create the container
    docker run -d -v /srv/dev-disk-by-label-d1/svn:/var/opt/svn -p 3690:3690 garethflowers/svn-server


    create the repo named 'test'
    aaron@omv5dev:~$ docker exec -it keen_brattain sh
    /var/opt/svn # svnadmin create test


    check the repo from another system
    aaron@omv4dev:~$ svn info svn://omv5dev/test/


    tortoise svn should work the same but I'm not installing that.

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

  • @ryecoaaron



    Code
    root@omv:~# svn info svn://omv/vbrepo/
    svn: E170013: Unable to connect to a repository at URL 'svn://omv/vbrepo'
    svn: E000111: Can't connect to host 'omv': Connection refused
    root@omv:~#

    to me, it doesn't even work from the same system!

    • Offizieller Beitrag

    to me, it doesn't even work from the same system!

    Must be a dns issue. Does svn info svn://localhost/vbrepo/ work?

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

  • Must be a dns issue. Does svn info svn://localhost/vbrepo/ work?

    Code
    root@omv:~# svn info svn://localhost/vbrepo/
    svn: E170013: Unable to connect to a repository at URL 'svn://localhost/vbrepo'
    svn: E000111: Can't connect to host 'localhost': Connection refused
    root@omv:~#
    • Offizieller Beitrag

    Assuming you started the container with the same parameters you posted above, what is the output of find /home/svn/ -ls

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

  • Assuming you started the container with the same parameters you posted above, what is the output of find /home/svn/ -ls

    • Offizieller Beitrag

    Those are the same permissions I have. I don't know why it doesn't work.

    omv 7.0.4-2 sandworm | 64 bit | 6.5 proxmox kernel

    plugins :: omvextrasorg 7.0 | kvm 7.0.10 | compose 7.1.2 | k8s 7.0-6 | cputemp 7.0 | mergerfs 7.0.3


    omv-extras.org plugins source code and issue tracker - github


    Please try ctrl-shift-R and read this before posting a question.

    Please put your OMV system details in your signature.
    Please don't PM for support... Too many PMs!

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!