cancel
Showing results for 
Search instead for 
Did you mean: 

ASK about start alfresco

azhar
Champ in-the-making
Champ in-the-making
i have a problem when i start alfresco like this :

root@muhammad-azhar:/opt/alfresco-3.4.d# ./alfresco.sh start
/opt/alfresco-3.4.d/mysql/scripts/ctl.sh : mysql  (pid 4979) already running
Using CATALINA_BASE:   /opt/alfresco-3.4.d/tomcat
Using CATALINA_HOME:   /opt/alfresco-3.4.d/tomcat
Using CATALINA_TMPDIR: /opt/alfresco-3.4.d/tomcat/temp
Using JRE_HOME:        /opt/alfresco-3.4.d/java
Using CLASSPATH:       /opt/alfresco-3.4.d/tomcat/bin/bootstrap.jar
PID file (/opt/alfresco-3.4.d/tomcat/temp/catalina.pid) found. Is Tomcat still running? Start aborted.
/opt/alfresco-3.4.d/tomcat/scripts/ctl.sh : tomcat could not be started
root@muhammad-azhar:/opt/alfresco-3.4.d#

after that iam start URL http://localhost:8080/alfresco

can not find these URL why ?
any one help me please ?   :?:
4 REPLIES 4

mrogers
Star Contributor
Star Contributor

PID file (/opt/alfresco-3.4.d/tomcat/temp/catalina.pid) found. Is Tomcat still running? Start aborted.

azhar
Champ in-the-making
Champ in-the-making
What should I do ? please help me  :?:

lachmac
Champ in-the-making
Champ in-the-making
Hi,

not sure if this will help, but still. Basically the system thinks that tomcat is still running.

The shutdown commando for tomcat is

./shutdown.sh

Check two things;
Is tomcat still running, check that tomcat is shut down, with the command, in a terminal,

netstat -lnp | grep <port no>, the port number should probably be 8080, for tomcat.

If this gives any output it should be in the form of

tcp6       0      0 :::8080                   :::*                    LISTEN      19356/<name>

This shows that tomcat is running, is listening at port 8080, and has a process number 19356.

kill <process no> should fix that.

In the directory <tomcat>/temp there is a file called catalina.pid. This is created, I think, by Tomcat when it starts, delete this file.

God luck! :mrgreen:

azhar
Champ in-the-making
Champ in-the-making
thanks you before..