Page 1 of 1

Scalix and Funambol Same Server

Posted: Thu Feb 22, 2007 4:42 am
by webdude12
Anyone had any luck installing scalix and Funambol on the same server and then doing Apache / Tomcat sharing???

Posted: Tue Mar 27, 2007 11:06 am
by uwe-beach
I've also problems running scalix/tomcat and funambol on the same server. First, i start scalix and tomcat. When i start the funambol server, tomcat was killed.

lsof -i :8080 says, that the port 8080 is free.

In the tomcat log i found :

scalix-caa.log:2007-03-28 09:45:50,319 ERROR [NotificationEventListener.run:232]
java.net.SocketException: Socket closed

Any idea ?

regards
uwe

Change tomcat shutdown port 8005 -> 8006

Posted: Tue May 29, 2007 12:02 am
by linuslai
Guys, you may try out this,


# vi /opt/Funambol/tools/tomcat/conf/server.xml

Change from
<Server port="8005" shutdown="SHUTDOWN">
To
<Server port="8006" shutdown="SHUTDOWN">

Then start the service
# cd /opt/Funambol
# tools/bin/funambol.sh start


Double confirm
# netstat -nltp

You would see port 127.0.0.1:8005 & 127.0.0.1:8006
running at the same time. One is for Scalix, the other is for Funambol.

Please confirm for me whether this work for you guys or not.
Mine seems working.

Cheers,

Posted: Tue May 29, 2007 2:06 pm
by racmar
If I may ask, does this give users the ability to sync their Windows Mobile 5 ( WM5 ) devices? Also, are you using this in production, or is this a testing platform for now?

The bosses have WM5 devices and they desperately want over-the-air ( OTA ) sync to work. As it is, we still have problems /w activesync + the scalix connector. I cannot expect them to trouble shoot the problems, so I see OTA sync as a must.

If you could post a howto ( or add it to the wiki ), I would be very greatful.

-Rob

Posted: Wed Jun 06, 2007 2:50 pm
by linuslai
racmar wrote:If I may ask, does this give users the ability to sync their Windows Mobile 5 ( WM5 ) devices? Also, are you using this in production, or is this a testing platform for now?

The bosses have WM5 devices and they desperately want over-the-air ( OTA ) sync to work. As it is, we still have problems /w activesync + the scalix connector. I cannot expect them to trouble shoot the problems, so I see OTA sync as a must.

If you could post a howto ( or add it to the wiki ), I would be very greatful.

-Rob


Basically my setup is based on the wiki, except the Funambol server is on linux, and same box with Scalix.
I am using Dopod 838 pro (WM5+Funambol v6 client) to sync OTA. It's a test environment, the problem is i could not roll out to my colleagues is because, we need a outlook+funambol running 24 hours for each user.

My ActiveSync + Scalix Connect work fine.

I will try to write a wiki if i am free.

Cheers,
Linus

Re: Change tomcat shutdown port 8005 -> 8006

Posted: Mon Jun 18, 2007 3:10 am
by uwe-beach
linuslai wrote:Guys, you may try out this,


# vi /opt/Funambol/tools/tomcat/conf/server.xml

Change from
<Server port="8005" shutdown="SHUTDOWN">
To
<Server port="8006" shutdown="SHUTDOWN">



thanks.
now it works.
regards
uwe

Posted: Mon Aug 11, 2008 2:39 pm
by Mouseclone
Just wanted to share this with you. I'm running RHEL 5 and Scalix 1.4.1. I have recently done all of the updates to the server and to Scalix. After doing this I was unable to run either Webmail or Funambol at the same time.

After looking around I found that Java was listening on port 8080. This was after I started the webmail. So instead of using port 8080 with Funambol, I have decided to use port 81. This worked great. I changed all of the port="8080" to port="81" and started the Funambol server.

Everything is working now, with the port change from 8005 to 8006 as mentioned above.