阿里云的centos7的版本中,通过yum安装了subversion之后,svn客服端无法链接svn服务器。

首先确定服务器的安全组策略中的3690端口是否打开

然后确定svnserve配置是否正确,确定svnserve是否正常启动

svnserce.conf正确的配置如下

anon-access = none
# auth-access = write  注意: 这个注释不要去掉
password-db = passwd
authz-db = authz

centos7 都安装了firewall防火墙,设置一下端口

firewall-cmd --zone=public --add-port=3690/tcp --permanent
firewall-cmd --reload

检测一下svnserve是否正常启动 ps aux | grep svnserve

[root@xxx svn]# ps aux |grep svnserve.conf 
root      2666  0.0  0.0 162336   964 ?        Ss   10:41   0:00 svnserve -d -r /www/svn/ --config-file=/www/svn/svnserve.conf
root      2690  0.0  0.0 112660   988 pts/0    S+   10:49   0:00 grep --color=auto svnserve.conf

  

 

相关文章:

  • 2021-04-12
  • 2022-01-17
  • 2021-05-17
  • 2021-12-21
  • 2021-05-03
  • 2021-10-07
  • 2021-09-28
猜你喜欢
  • 2021-12-28
  • 2021-06-12
  • 2022-01-18
  • 2021-10-03
  • 2021-10-30
  • 2021-11-16
  • 2021-08-02
相关资源
相似解决方案