About svn because the target computer actively refused it can not connect solution

Solutions
  In fact, the solution is simple, the service turned off, and then start it with the svn command line, the command is as follows:
  Check the service running svn status, ps aux | grep svnserve
  determine the service process id, if the service is started there will be two states process, there is a path of progress is not a path of progress, if only one process, then that service does not start, you need to restart the sVN service, that is, use the command: svnserve -d -r / var / svn / repository path
  after starting the service needs to view the status of SVN service again to determine whether the service started ps aux | grep svnserve If there are two processes, project start properly, you can test to see if available available, the problem is resolved, or if not available, I recommend trying the following way, try to turn off the firewall, centos7 is viewed with systemctl status firewalld.service command, the server may be different, but the same idea, if the service is turned on with the command to turn off: after systemctl stop firewalld.service to execute the command again View SVN service status, determine the SVN service shutdown After closing of the fire re-test if successful, if successful, the problem is solved, if unsuccessful, to kill the process kill -9 -pid, restart svn service svnserve -d -r / var / svn / repository path, and then re whether the test was successful

Guess you like

Origin www.cnblogs.com/zzc666/p/11071992.html