Quantcast
Channel: SVNForum.org - Subversion Forum - uberSVN Help and Support
Viewing all 111 articles
Browse latest View live

Importing users from LDAP location - command line/API?

$
0
0
When accounts are added to our LDAP server, we need to manually import those accounts in UberSVN.

Is it possible to automate this proces? Is there for example a command line option to add users so we can create a script to do this automatically when an account is added? Or is there a (REST)API.

I tried to trigger the the import by submitting the request manually using url http://myserver/ubersvn/views/platfo...&del=svn-users

I submitted as a 'get', no error, but also no import. Would it work if I 'post' this request? I did change the URL - I removed the faces viewstate - no idea if this could possibly work.

Unable to send emails from uberSVN

$
0
0
I have been unable to send emails through uberSVN since one of my recent upgrades. I know my settings are correct, because the same settings work on my Nexus server.

The following error is reported when clicking on the error alert icon in the lower left corner of the browser, which is IE 8

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; GTB7.5; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; Tablet PC 2.0; .NET4.0E; MS-RTC LM 8)
Timestamp: Tue, 23 Jul 2013 19:50:47 UTC


Message: Unterminated string constant
Line: 130
Char: 106
Code: 0
URI: https://dayrhesvnp001.enterprisenet....erSettings.jsf


I am currently running uberSVN 13.02.3153-2 on Red Hat Enterprise Linux Server release 5.6 (Tikanga)

Repository Browser "The server refused the connection." and crash

$
0
0
I have a brand new installation of uberSVN on CentOS 6.4

Everything seems to be working find other then uberApps (due to corp firewall) and the Repository Browser.


When i try to view a file on the repository browser (i have tried many files type including txt, sln, c, ini, web.config) and all give me the same result.

When you click on the file the window says "The server refused the connection." and then basically the server hangs and i have to restart all the uberSVN services. "./ubersvncontrol stop/start"

Not sure how to fix this. any help would be awesome!

I have tried with and without LDAP auth.

Attached is a small screen shot and my logs.
Attached Images
Attached Files

Can I integrate Mysql 5.6 and UberSvn

$
0
0
Hi All,

Have come across a small problem. I am trying to develop a java project using Eclipse(Galileo).
Everything was working fine till I tried to commit the Database Access class(ex:registration.java), its not getting committed.
I guess will have to integrate SVn an MySql, not sure how.

The Java Class has the connection details and the sql queries that are needed to run in MySql.
Apart from that class, everything else is getting committed.

Any kind of help here would be great. Because I am stuck here and cannot continue working anymore!

Error while committing:

org.apache.subversion.javahl.ClientException: Illegal target for the requested operation
svn: Commit failed (details follow):
svn: 'D:\Workspace\Maatlu\src\bp_Dao\RegistrationDAO.ja va' is not under version control

Repository Browser only works with SVN 1.6

$
0
0
I can only get my Repository Browser to work with Binary from SVN 1.6

When i switch to 1.7 the Repository Browser crashes the apache server.

What can i do to get this to work with 1.7 SVN


OS:
Cent OS 6.4 x64

Replace uberSVN Repository Browser with WebSVN working!

$
0
0
Since i was unable to get any help on these forms I just wanted to post that it is possible to replace the Repository Browser with WebSVN!


DISCLAIMER: I am not responsible for any issues that this causes on your system. I highly recommend that you take backups and test on a different server

first! However with that being said i was able to do this with zero problems and no side effect on the system.

This is what i did.

From Linux Ubuntu 12.04+ x64

1.) install Subversion (apt-get install subversion) - don't worry this will not change your uberSVN subversion.
------ Note: I did the APT-GET first of the subversion. and then found an issue with compatibility of the webSVN and uberSVN subversion version. to fix this

install subversion 1.8 for your distro. This is important to get this to work right. http://www.wandisco.com/subversion/d...ubuntu_precise
If you get asked about installing svn modules then you can say yes.

2.) install libapache2-svn (apt-get install libapache2)

3.) install webSVN (apt-get install webSVN)
------During the install it will prompt you to configure webSVN. On the first screen say 'yes', second screen leave all options checked *, third screen put

in your top level repo location. (mine was /u01/uberSVN/repositories), fourth screen leave this one blank!, fifth 'ok'. If you mess this up the first time

around don't worry you can reconfigure this again by running 'dpkg-reconfigure webSVN'


After that you have do some minor tweaks.

First lets change the port that it wants to run on.
goto
/etc/apache2/sites-available and edit file 'default'
change the *:80 to *:81

so it should look like <VirtualHost *:81>

Save the file

restart your apache service.

./etc/init.d/apache2 restart

after that open your browser and check that you can get to webSVN

http://yourservername.domain.local:81/webSVN

if you did everything right about you should now see webSVN.

Check and see if you can view your ubserSVN repositories!

if you can see them then great!


Now lets replace repository browser this with uberSVN.


First lets lock down webSVN a little bit and configure some settings.

goto /usr/share/websvn/include
edit file
config.php

make sure the following lines are uncommented.

$config->addTemplatePath($locwebsvnreal.'/templates/calm/');
$config->addTemplatePath($locwebsvnreal.'/templates/BlueGrey/');
$config->addTemplatePath($locwebsvnreal.'/templates/Elegant/');
$config->useFlatView(); //This is optional. I just liked the way it displayed better in uberSVN
$config->setShowRepositorySelectionForm(false); //This is important as this will lock down websvn from users looking at other Repos.
$zipped[] = '.dll'; //optional
$config->addInlineMimeType('text/plain');
$config->allowDownload(); //optional
$config->setMinDownloadLevel(0); //optional
$config->useGeshi();
set_time_limit(0);
$config->expandTabsBy(8);



Next lets replace the old REPO Browser with webSVN

go to your install directory for ubersvn

navigate to
/yourinstall_location/ubersvn/tomcat/webapps/ubersvn/sections/platform/repository

open file
repositoryBrowser.xhtml

Edit line. with the <iframe> tag.
comment out or delete the old <iframe>
then use this.
<iframe frameborder="0" height="590" width="100%" scrolling="true" src="yourservername.domain.local:81/webSVN/listing.php?repname=/#

{repositoryProfileManagedBean.repo.davLocation}" />

or if you want to specify a theme

<iframe frameborder="0" height="590" width="100%" scrolling="true" src="yourservername.domain.local:81/webSVN/listing.php?template=Elegant&#38;repname=/#

{repositoryProfileManagedBean.repo.davLocation}" />


comment our or delete

<h:outputText id="repoName" styleClass="formOutputText" style="font-size: 24px;"
value="#{repositoryProfileManagedBean.repo.name}" />
<br />
<hr />


Then that is it! your all done! give yourself a pat on the back.

As long as i did not forget any steps.......

go out to your uberSVN. Then go into a repo. then click on the 'Browse' tab. and you should not see the webSVN browser with your repo!!!


UberSVNwithwebSVN.jpg

UberSVNwithwebSVN2.jpg
Attached Images

cannot get uberApps to work

$
0
0
I have tried several builds of Linux and also directly connected to the WAN.

When I click uberApps I get unable to connect to the uberApp store.

I also have tried to register, behind the firewall, and directly connected to the WAN.

is it possible there is something wrong with my license?

Loading dump file into UberSVN repo at specific location

$
0
0
Hello,

We've recently set up an UberSVN server and created a repository that has the following folder structure.

RepoHead
-> ProjectA
--->branches
--->tags
--->trunk
->ProjectB
--->braches
--->tags
--->trunk

As you can see we're opting for a "one repository to rule them all" approach. I have existing SVN repositories for each of the projects that I would now like to migrate into the one repository while still maintaining all the existing version numbers. My understanding is that this can be accomplished using svnadmin dump to create a dump file for each project repository and to then perform an svnadmin load to load the dump file into the new repo.

I'm using the UberSVN Web Admin utility under the Repository Admin options there is an option for loading a dump file. My question is, can I load to a specific location within the repository or will it default to load the dump file to my RepoHead? I'd like to load each project repositories dump file so that I can retain the history of each individual repository and combine them into one.

Thanks,
Dan

recover deleted svn

$
0
0
Hi,

On my server there where svn repositories on specific port 8443.
I installed uber svn and I cannot connect to the svns that where before.

I do not have a copy of them as working copy and if I am trying to reach that url I new that was working I get "unable to connect" message.

Is there any option or utility that can search my server and recover the svn repositories I had or is there any other way manually to do it ?

Thanks a lot.

What Subprocess within UberSVN Portal is using Port 9001 and how can it be changed

$
0
0
I am using ubersvn (which I love). I have another application that is using port 9001. It is in conflict with ubersvn which also apparently uses port 9001. I would like to change the configuration for ubersvn so it uses a different port. But I am not sure where this is configured in ubersvn. Does anybody know? From debugging I can verify that it is definitely the portal element of ubersvn, but not sure where to go within there to change the behavior. Thanks in advance for your help.

Can't Install uberSVN Chimney House Release on Mac OS 10.9 Mavericks

Repository LDAP Authentication issue | Server 500 Error

$
0
0
System Overview:
OS Ubuntu 12.04.3 LTS
uberSVN #13.2-3153 SVN - 1.7 Running in HTTPS
Active Directory Services Win2K8R2

First off thanks for the video on setting up the LDAP URL in uberSVN. I will share the link again for others as it was a big help with the URL syntax:
http://support.wandisco.com/index.ph.../56/ldap-setup
I was able to import users with no issues following this tutorial.
I also can get uberSVN working (in HTTPS) with no issues while using uberSVN Internally Managed Authentication for the repositories using a local uberSVN account.
As soon as I select LDAP Active Directory Authentication for the repository, and restart the service, I get a login dialog box. After entering either an LDAP account or a local uberSVN user account I get a Server 500 error. I have tried multiple configuration in the repositories.conf file but have yet to figure it out.
Here is one config that fails:
Code:

<VirtualHost *:443>
  KeepAlive On
  SSLEngine on
  SSLCertificateFile openssl/certs/ubersvn.crt
  SSLCertificateKeyFile openssl/certs/ubersvn.key
  <Location /svn>
    DAV svn
    SVNPath "/vault/svn"
    AuthType Basic
    AuthName "svn"
    AuthBasicProvider domain.com
    AuthzLDAPAuthoritative off
    AuthLDAPBindAuthoritative off
    Require valid-user
    AuthzSVNAccessFile "/opt/ubersvn/conf/svn.authz"
    Order deny,allow
    Allow from all
    SVNAutoversioning On
  </Location>
CustomLog data/logs/svn_logfile "%t %u %{SVN-ACTION}e" env=SVN-ACTION
</VirtualHost>

Here is another config that fails:
Code:

<VirtualHost *:443>
  KeepAlive On
  SSLEngine on
  SSLCertificateFile openssl/certs/ubersvn.crt
  SSLCertificateKeyFile openssl/certs/ubersvn.key
  <Location /svn>
    DAV svn
    SVNPath "/vault/svn"
    AuthType Basic
    AuthName "svn"
    AuthBasicProvider domain.com
    AuthzLDAPAuthoritative off
    AuthLDAPBindAuthoritative off
    AuthLDAPGroupAttribute memberOf
    AuthLDAPGroupAttributeIsDN on
    Require ldap-group CN=ubersvn-users,OU=UBERSVN,DC=domain,DC=com
    AuthzSVNAccessFile "/opt/ubersvn/conf/svn.authz"
    Order deny,allow
    Allow from all
    SVNAutoversioning On
  </Location>
CustomLog data/logs/svn_logfile "%t %u %{SVN-ACTION}e" env=SVN-ACTION
</VirtualHost>

Here are the only warnings and errors I see in the logs
CATALNA.OUT
Code:

[15 Nov 2013 11:05:43] ERROR - Directory: /opt/ubersvn/tomcat/temp/sventon_config/RepositoryBrowser/repositories/svn could NOT be created
This directory does get created and the sventon_config.properties is there with the following content
Code:

useCache=false
cacheUserPassword=
repositoryRootUrl=https://vmp-svn-002.domain.com:443/svn
rssTemplateFile=/rsstemplate.html
allowZipDownloads=false
mailTemplateFile=/mailtemplate.html
enableEntryTray=true
enableAccessControl=true
repositoryDisplayRootUrl=https://vmp-svn-002.domain.com:443/svn
cacheUserName=
userName=
enableIssueTrackerIntegration=false
rssItemsCount=20
userPassword=

UBERSVN.LOG
Code:

[15 Nov 2013 11:05:43] ERROR (?:?) - Directory: /opt/ubersvn/tomcat/temp/sventon_config/RepositoryBrowser/repositories/svn could NOT be created
ERROR.LOG
Code:

[Fri Nov 15 11:05:48 2013] [warn] RSA server certificate CommonName (CN) `ubersvn' does NOT match server name!?
SVENTON.LOG
Code:

2013-11-15 09:29:37,716 INFO [org.sventon.appl.Application] - <Starting Application reinitialization.>
2013-11-15 09:29:37,717 INFO [org.sventon.appl.Application] - <Loading repository config: svn>
2013-11-15 09:29:37,718 WARN [org.sventon.appl.Application] - <Configuration property file did exist but did not contain any configuration values>
2013-11-15 09:29:37,718 INFO [org.sventon.appl.Application] - <Reloading configurations:>
2013-11-15 09:29:37,718 INFO [org.sventon.appl.Application] - <  added: [RepositoryConfiguration{repositoryName=svn}]>
2013-11-15 09:29:37,718 INFO [org.sventon.appl.Application] - <  removed: []>
2013-11-15 09:29:37,718 INFO [org.sventon.appl.Application] - <Initializing caches>
2013-11-15 09:29:37,718 INFO [org.sventon.appl.Application] - <Caches initialized ok>
2013-11-15 09:29:37,719 INFO [org.sventon.appl.Application] - <Cleaning up config directories.>
2013-11-15 09:29:37,719 INFO [org.sventon.appl.Application] - <Application reinitialization completed.>
2013-11-15 10:29:26,565 INFO [org.sventon.appl.ConfigDirectory] - <Config root directory for current servlet context set to: /opt/ubersvn/tomcat/temp/sventon_config/RepositoryBrowser>
2013-11-15 10:29:27,172 INFO [org.sventon.repository.RepositoryChangeMonitorImpl] - <Starting repository monitor>
2013-11-15 10:29:27,204 INFO [org.sventon.service.SVNProvider] - <Found SVNProvider: class org.sventon.service.javahl.JavaHLSVNProvider>
2013-11-15 10:29:27,326 INFO [org.sventon.cache.direntrycache.DirEntryCacheUpdater] - <Starting>
2013-11-15 10:29:27,340 INFO [org.sventon.cache.logmessagecache.LogMessageCacheUpdater] - <Starting>
2013-11-15 10:29:27,444 INFO [org.sventon.appl.Application] - <Initializing sventon version 0.1 beta>
2013-11-15 10:29:27,446 INFO [org.sventon.appl.Application] - <Loading repository config: svn>
2013-11-15 10:29:27,492 INFO [org.sventon.appl.Application] - <1 repository configuration(s) loaded>
2013-11-15 10:29:27,492 INFO [org.sventon.appl.Application] - <Initializing caches>
2013-11-15 10:29:27,492 INFO [org.sventon.appl.Application] - <Caches initialized ok>
2013-11-15 10:29:29,882 INFO [org.sventon.appl.Application] - <Starting Application reinitialization.>
2013-11-15 10:29:29,882 INFO [org.sventon.appl.Application] - <Loading repository config: svn>
2013-11-15 10:29:29,883 INFO [org.sventon.appl.Application] - <1 repository configuration(s) loaded>
2013-11-15 10:29:29,897 INFO [org.sventon.appl.Application] - <New config same as old. Configuration unchanged.>
2013-11-15 10:29:29,897 INFO [org.sventon.appl.Application] - <Application reinitialization completed.>

I have also set apache and tomcat to full DEBUG in logging. Any information would be much appreciated.

UberSVN Source

$
0
0
Forum Admins or moderators.

Can you please pass this to the powers that be.

Since the UberSVN platform is no longer being developed on or supported can you please release the Source Code for this project so it can be community managed. This is a great tool for developers to use and as it stands, right now the community is the only source of support for UberSVN. It would be tragic to watch this project complete vanish into the 'has-been' or 'once-was' category.

For any of the users that see this message if you agree please put a comment.

How upgrade SVN binaries in UberSVN ?

$
0
0
Hi,

So UberSVN is no longer supported. But SVN still progress.
Is anyone succesfully upgrade SVN binaries on a UberSVN platform ?

Philippe.

UberSVN upgrade package

$
0
0
Hi,

Is anyone got the package to an offline upgrade UberSVN #12.11 to #13.02 (Release 8) ?

Mr Wandisco doesn't want my money and doesn't sell me support for UberSVN cause of no longer support.

Customizing the management console/dashboard

$
0
0
Just wondering.

Is there a way to customize the dashboard that is normally found under localhost:9890? Like replacing the uberSVN header with my own or having the "Support Center" button lead to another homepage?

UberSVN stops after a few hours of inactivity

$
0
0
I have installed uberSVN on an Amazon EC2 server, everything works fine when the setup ends, but when I try to use ubersvn the next day it doesn't work anymore. I had to run "./ubersvncontrol start" command. It looks like the service is stopped after being idle. What should I do to keep it working all the time and avoid the manual start every day?

I don't know if there's and special configuration or is as simple as following the ubersvn installation setup given by the .sh file.

I will upload the logs found at /home/ubersvn/data.

logs.zip

Thanks in advance!
Attached Files

Repository appears to be cross linked, need help fixing it

$
0
0
We have had uberSVN running for about 2 years. One of the repositories that up until now has been working fine is now corrupted in some way.

When I attempt to browse the repository contents, instead of showing the contents that are reported by svn command line tools (such as svnlook) shows a list of other svn repositories.
Screen Shot 2014-02-17 at 5.02.19 PM.jpg

That list does not contain this repository. Using command line svn tools I can access the repository, just not using uberSVN web UI.


Is there any way to get this corrected?
Attached Images

Seriously, is uberSVN Dead?

$
0
0
I know this question has been asked before and I've read the 6+ month old reply. But let's be honest here please -- is this thing dead or what?

None of the links work. The documentation links are all broken. The knowledgebase links are all broken.

I'll be sad to see it go, but it is much worse trying to find information and hitting dead ends.

I understand if business directions have changed. Just be honest with us.

thanks!

Ubersvn question

$
0
0
Is there a way to setup Ubersvn so that it doesn't keep asking for my login and password when trying to browse a repository ?
Viewing all 111 articles
Browse latest View live