svnserve

Unknown hostname localhost when connecting to SVN

旧时模样 提交于 2019-12-24 13:33:54
问题 I have a RedHat 6 enterprise server that I have installed SVN 1.6 on. This machine is not on a network and has never been on a network. Eventually, it will be added to a network but not right now. I am running svnserve to provide access to the repository. svnserve is started as, svnserve -d When I run the command, svn co svn://localhost/<project name> I get the error message, "svn: E000111" Can't connect to host 'localhost': connection refused. netstat confirms that svn is listening on 0.0.0

svnserve and SASL problem

▼魔方 西西 提交于 2019-12-08 18:32:32
I have configured svn server in my system and have made following configuration for authenticating users with SASL MD5. I have made following changes in the svnserve.conf [general] anon-access = none auth-access = write password-db = passwd authz-db = authz realm = my_first_repository [SASL] use-sasl = true min-encryption = 0 max-encryption = 256 /usr/local/lib/sasl2/subversion.conf pwcheck_method: auxprop auxprop_plugin: sasldb sasldb_path: /etc/my_sasldb mech_list: DIGEST-MD5 i am adding the user by the following command saslpasswd2 -c -f /etc/my_sasldb -u my_first_repository username it

svnserve and SASL problem

假如想象 提交于 2019-12-08 05:02:35
问题 I have configured svn server in my system and have made following configuration for authenticating users with SASL MD5. I have made following changes in the svnserve.conf [general] anon-access = none auth-access = write password-db = passwd authz-db = authz realm = my_first_repository [SASL] use-sasl = true min-encryption = 0 max-encryption = 256 /usr/local/lib/sasl2/subversion.conf pwcheck_method: auxprop auxprop_plugin: sasldb sasldb_path: /etc/my_sasldb mech_list: DIGEST-MD5 i am adding

virtualbox的ubuntu虚拟机中搭建SVN服务器

三世轮回 提交于 2019-12-01 18:55:25
一 安装SVN sudo apt-get install subversion 二 用自动脚本配置SVN服务器 SVN服务器的分为如下几步: 1 在ubuntu上创建SVN用户及SVN用户组 2 创建SVN根目录及项目目录 3 创建SVN数据仓库 4 修改目录权限 5 导入初始数据(可选) 6 配置SVN用户权限 这下提供一个BASH脚本,可以完成上面6步工作的前面5步。“配置SVN用户权限”在下小节中将继续说明: #!/bin/bash ################################### # V1.0 # 作用:完成,SVN数据库的初始化工作,已经在Ubuntu上通过了测试 # 使用方法: 可以直接在终端输入 sudo init_svn_server.sh 来运行本脚本,如果 # 你想修改一些关键的设置 如用户名什么的,可以在“关键变量定义”处修改 # 作者: Jackey77681571@126.com ################################### #关键变量定义 SVN_USER=svnuser SVN_GROUP=subversion SVN_ROOT=/home/svn PROJECT_DIR=svn_manager IS_IMPORT=FALSE #soruce file directory LOCAL_DIR=/home

How to setup “svnserve --service” to run on Windows?

偶尔善良 提交于 2019-12-01 17:43:42
问题 When starting from cmdline svnserve.exe -d -r d:\svn\mytools all working fine. Then I had tried to set it up to run as Windows service: @echo off set SvnHome=C:\Program Files\TortoiseSVN set SvnRepository=D:\Svn\mytools sc delete SvnMyTools sc create SvnMyTools binPath= "%SvnHome%\bin\svnserve.exe --service -r %SvnRepository%" start= delayed-auto type= share service was installed but it is unable to start. All the time it is reporting an error Error 1083: The executable program that this

linux下svn服务器的搭建

这一生的挚爱 提交于 2019-11-30 14:31:33
1.前言 参考别人所述,svn服务器的两种运行方式:独立服务器svnserve和借助apache作为apache的一个模块, 这里选择搭建svnserve独立服务器。 svn存储版本数据有两种方式:BDB和FSFS。BDB方式在服务器中断时,可能锁住数据。FSFS方式更安全些,兼容性好。 2.svnserve的安装 1.从官网上 http://subversion.apache.org/ 选择最新版本并且解压到目录中 tar -zxvf subversion-1.8.14.tar.gz 2.进入subversion-1.8.14中按照tarball类型软件进行./configure &&make&& make install。由于./configure时需要很多的依赖文件,因此我们需要一步一步的安装并且添加上这些依赖文件。 2.1执行./configure --prefix=/usr/local/svntest 报出 configure: error: no suitable APR found 这里需要安装apr文件,从网上下载了apr-1.5.2.tar.gz 。 ./configure --prefix=/usr/local/apr&&make&& make install 然后安装apr-util文件,从网上下载了apr-util-1.5.4.tar.gz .