Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Error Saving Project: svn: OPTIONS request response failed on '/'

I just installed Talend Enterprise 4.2.1. using Easy Install and I am having a problem saving a new Project in the TAC.
The error message is:
Save failed: org.talend.commons.exception.BusinessException:
svn: Processing OPTIONS request response failed: Premature end of file. (/)
svn: OPTIONS request failed on '/' -- For more information see your log file
Here is the error message from my apache error_log file:
user talend_administrator not found: /svn
user admin@company.com: authentication failure for "/svn": Password Mismatch
I'm not sure where it is getting the user talend_administrator from as the only use I have is the admin@company.com default with the password of admin. I also don't get why there would be a password mismatch as in the TAC configuration section for SVN it checks out as green when I use "admin" as the password.
I installed SVN according to these instructions here: https://help.talend.com/search/all?query=Linux+Redhat+%28Fedora%29%2C+Apache&content-lang=en
yum install httpd mod_dav_svn -y
mkdir /var/www/svn
svnadmin create /var/www/svn/repository
htpasswd -cmb /var/www/svn/passwd admin@company.com admin
chown -R apache.apache /var/www/svn
I edited the /etc/httpd/conf.d/subversion.conf file and added the following:
<Location /svn>
DAV svn
SVNPath /var/www/svn/repository
Require valid-user
AuthType basic
AuthName "Subversion"
AuthUserFile /var/www/svn/passwd
</Location>
Here is my configuration for SVN in TAC:
Server location url: http://vm-eyaklin-006/svn/
Username: admin@company.com
Password: admin
Commit Log Pattern: {0}
Library location url: http://vm-eyaklin-006/svn/
Library username: admin@company.com
Library password: admin
Which checks out as green.
Thank you.
0683p000009MEJj.png 0683p000009METe.png
Labels (2)
2 Replies
Anonymous
Not applicable
Author

You might not have write permissions to / in your SVN, I suggest you create a folder under / in your svn for example talendprojects or you might be connecting to svn readonly and don't have write permissions anywhere in svn.
have you had a look at the svn log for errors it should be logging somewhere to show you why the svn is rejecting.

HTH
Peter
Anonymous
Not applicable
Author

You might not have write permissions to / in your SVN, I suggest you create a folder under / in your svn for example talendprojects or you might be connecting to svn readonly and don't have write permissions anywhere in svn.
have you had a look at the svn log for errors it should be logging somewhere to show you why the svn is rejecting.

HTH
Peter

Hey Peter,
The errors in my apache/svn logs are:
user admin@company.com: authentication failure for "/svn": Password Mismatch
I don't get the error, however. I installed svn on RHEL using the following commands:
mkdir /var/www/svn
svnadmin create /var/www/svn/repository
htpasswd -cmb /var/www/svn/passwd admin@company.com admin
chown -R apache.apache /var/www/svn
In my Talend configuration page, I get the green check mark when I enter the the password "admin".