I installed subversion server on windows server and started subversion server as windows service. I created some repositorys. The access from windows clients works fine (Tortoise; and with url: svn://Servername/RepositoryA/Entw
But now i want to access from a linux/debian client. I installed subclipse. But i cannot get an access to the svn Repository. I tried with several URL, but there are the answer:
svn: No repository found in ...
Can you help me?
Related
I have a git repository installed in a remote Linux server, but would like to work on it and sync my changes to the git repository using Visual Studio Community Edition 2017.
Apologies if this is a repeat question; am new to this and have looked at the existing answers on SO but don't seem to have found a direct answer for this.
I have managed to use Team Explorer to connect directly to github, but would prefer to connect to the git repository on the Linux server instead.
Thank you.
Let's say you have a user on the linux machine, with a projects subfolder in your home directory, and under that you have a git project in a folder called myproject.
You should be able to run git clone username#server:projects/myproject at any remote terminal (including windows with git installed), assuming you have an ssh server enabled on the linux server above (you may have to install openssh-server first).
I installed artifactory on linux server. I want to know how to check whether it is properly installed.
Secondly, I want to use it's user interface on google chrome. From where I can get SERVER_DOMAIN and PORT number for it's url from installed files on server?
Thanks in advance.
Your question is a bit vague.
How did you installed it (ZIP, RPM, Docker, Deb...)?
Which database you used (default, Oracle, MySQL etc..)? You can see if the server is up and running by running the following REST API from the machine you have installed it on:
curl -iuadmin:password localhost:8081/artifactory/api/system/ping
Regarding the IP, this can be checked by running 'ifconfig' on the linux server and get the IP of that machine.
Artifactory by default is running on port 8081, unless you changed it.
It seems that you will need to follow the basic installation wiki:
https://www.jfrog.com/confluence/display/RTF/Installing+Artifactory
We have Redhat Linux server, GIT was already installed on this server and we need to create a local repository.
We have TFS-GIT project in TFS 2015, we need to clone the TFS-GIT repository to the GIT repository on Linux by using GIT commands.
For this task, we created a empty local repository on Linux, and getting
"Fatal: authentication error to connecting TFS-GIT repository on windows server 2012 . We tried in different ways but still we are getting same error.
can any one please advise on this.
Thanks
As present time, you need to configure Basic Authentication on your TFS Application Tier server in order to authenticate from Linux (or OSX).
Note that if you do this, you should also enable SSL so you can use HTTPS, because Basic Authentication sends credentials in cleartext, including passwords. Using HTTPS will ensure that the credentials are encrypted.
Okey so I have installed ankh svn plugin on Visual Studio 2010 and I am now trying to access
my subversion server through internet. My server is linux based, and is not using apache or
SASL, just the basic install of subversion. I can commit and add files to the server locally, but as I said not over the internet. Any suggestion as to where my problem may lie?
PS I try to access the server by entering the URL: svn://my-ip-address/myfirstproject/
in VS 2010 subversion window.
where my-ip-address is not local but a public ip.
Also I am using -r flag on svnserve so my path becomes relative.
I have two machines I work on:
Windows Client (Development Machine)
Linux Web Server (Ubuntu)
On the Linux server I have installed Apache, Samba and SVN.
I've created a samba share that maps to the htdocs/ directory so that I can access the web files from Windows.
The following illustrates my workflow:
From command line on Linux server I checkout working copies of web projects from remote server into my local Linux server's htdocs directory.
On the Windows machine I access these files (using samba) and edit them in my editor and test them in the web browsers
Back on the Linux machine I checkin my work to the remote server.
The problem I have is that currently for me to be able to edit the files on the Windows box via Samba I have to change the owner of the files to nobody (apache user) and set the Samba share to use SHARE permissions.
When I try to use SVN to commit and update etc. I can't because my Linux user is not 'nobody' and does not have permissions to do so. So I have to become root do an SVN [command] then change all the files back to 'nobody' so that I can't edit on Windows.
What I would like to be able to do is have the web files be owned by my local Linux user which would enable SVN commands to work and for Windows (over samba) to also use this same user.
How can I get this to work, is there a way to get Windows and Linux users to match?
Why use this strange workflow? A more logical one would be:
Checkout the files on the Windows Machine directly
Edit and test them
Check in when ready
Is there something special you need from the Linux server? Cant' you install apache on Windows (for testing purposes only?)
I've solved my problem by changing all the permissions to match and then using samba USER permissions and settings up a users.map file.