版本管理:Subversion Edge:csvn服务启动的常见错误

版本管理:Subversion Edge:csvn服务启动的常见错误_第1张图片

这篇文章记录一下Subversion Edge的csvn和csvn-httpd的错误和对应方法。

csvn服务启动错误

提示信息

WARNING: CSVN Console may have failed to start.
Could not run the command using user "svn".
Advice: Make sure the user "svn" has a shell.
If user "svn" has a no shell, you can specify one using SU_OPTS if your platform support it.
For example, at the top of this script you can set: SU_OPTS="-s /bin/bash".
Another workaround would be to use a OS service management tool if available on your platform.
OS service management tools supported by this script are described at the top of this script.
subversion

原因

展开的csvn的目录的owner不是svn:svn

[root@liumiaocn subversion]# ls -lrt
total 97036
drwxr-xr-x. 11 498 498      149 May  9  2019 csvn
-rw-r--r--.  1 svn svn 99364161 Aug 22 07:22 CollabNetSubversionEdge-5.2.4_linux-x86_64.tar.gz
[root@liumiaocn subversion]# 

对应

此问题确保注意事项,基本就可以解决:

  • 使用svn用户执行
  • 结合sudo用户赋予权限
  • csvn展开目录的权限需要保证为svn:svn

csvn-httpd无法正常启动

错误信息

Starting Subversion Edge Apache Server: (13)Permission denied: AH00072: make_sock: could not bind to address [::]:80
(13)Permission denied: AH00072: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
AH00015: Unable to open logs
                                                           FAILED

原因

此问题一般原因为执行命令前未加sudo

对应

执行时前加sudo即可,比如使用如下执行命令

[svn@liumiaocn ~]$ sudo service csvn-httpd start
Starting Subversion Edge Apache Server:                      OK  
[svn@liumiaocn ~]$ 

无法访问页面

现象

在SELinux和防火墙开启的情况下,使用firewall-cmd打开了3343端口,却无法从页面访问

执行命令:firewall-cmd --zone=public --add-port=3343/tcp --permanent

页面访问地址:http://localhost:3343/csvn

原因

未执行firewall-cmd --reload

对应

不要忘记执行firewall-cmd --reload

你可能感兴趣的:(Subversion,Edge,#,版本管理,版本管理,svn,edge)