-2

I'm using uberSVN on Ubuntu server. Now, I can't checkout, commit source from Subversion Server ( domain.com:9880, port subversion)

I tried to start httpd by command line as:

sudo /opt/ubersvn/bin/httpdserverctl start

, but I get error:

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
httpd (pid 895) already running

I tried run this command as follow:

cd /opt/ubersvn/bin
 sudo ./ubersvncontrol start

then get errors:

Starting SysV Tomcat
Using CATALINA_BASE:   /opt/ubersvn/tomcat
Using CATALINA_HOME:   /opt/ubersvn/tomcat
Using CATALINA_TMPDIR: /opt/ubersvn/tomcat/temp
Using JRE_HOME:        /opt/ubersvn/jre
Using CLASSPATH:       /opt/ubersvn/tomcat/bin/bootstrap.jar
Using CATALINA_PID:    /opt/ubersvn/data/run/tomcat.pid
Existing PID file found during start.
Tomcat appears to still be running with PID 943. Start aborted.

In the Ubersvn website GUI, I tried start Ubersvn server but get error :

enter image description here

How to start Subversion Server ?

dakiquang
  • 119
  • 2
  • 8

3 Answers3

0

The first line is only the warning. Change the ServerName directive in the Apache configuration file to something like this ServerName :80 to make it go away.

The second line means that...the Apache is already running. How about this:

cd /opt/ubersvn/bin
./ubersvncontrol start
quanta
  • 50,327
  • 19
  • 152
  • 213
0

You can check the status and start, stop or restart Apache and uberSVN from the 'Status' tab of uberSVN.

What does it say the status is currently?

Mand Beckett
  • 131
  • 3
0

I have found out the answer for my problem. You just need delete the file /opt/ubersvn/data/run/tomcat.pid and remove all file in log folder of Ubersvn /opt/ubersvn/data/logs/.

Then you could restart the this server.

dakiquang
  • 119
  • 2
  • 8