Home > Database > Mysql Tutorial > 让Funambol(sync4j)使用mysql的最简方法

让Funambol(sync4j)使用mysql的最简方法

WBOY
Release: 2016-06-07 15:26:18
Original
962 people have browsed it

让 Funambol(sync4j) 使用 mysql 的最简方法 作者联系方式:李先静 xianjimli at hotmail dot com 1. 下载 funambol- 6.5.12 .bin 并安装。 2. 下载 mysql-connector-java- 5.0.4 -bin.jar 并拷贝到 Funambol/tools/mysql 中。 3. 修改 Funambol/ds-server/i

Funambol(sync4j)使用mysql的最简方法

 


作者联系方式:李先静

 

1.下载funambol-6.5.12.bin并安装。

2.下载mysql-connector-java-5.0.4-bin.jar并拷贝到Funambol/tools/mysql中。

3.修改Funambol/ds-server/install.properties

  #dbms=hypersonic

  #jdbc.classpath=../tools/hypersonic/lib/hsqldb.jar

  #jdbc.driver=org.hsqldb.jdbcDriver

  #jdbc.url=jdbc:hsqldb:hsql://localhost/funambol

  #jdbc.user=sa

  #jdbc.password=

 

  dbms=mysql

  jdbc.classpath=../tools/mysql/mysql-connector-java-5.0.4-bin.jar

  jdbc.driver=com.mysql.jdbc.Driver

  jdbc.url=jdbc:mysql://localhost:3306/mysql?characterEncoding=UTF-8

  jdbc.user=root

  jdbc.password=

4.确保mysql已经运行。

5.让设置生效:进入Funambol/ds-server,并运行./bin/install.sh.

6.运行同步服务器:进入Funambol/ds-server,并运行./bin/start.sh.

 

~~end~~

 

 
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template