上午让大力安装那个OSRMT,放到Linux上,因为是Java写的通用性还比较好,JBOSS是应用服务器。
windows上安装异常简单,默认数据库Access,双击jar包,基本上下面选一下语言等就行了。 默认端口8080,
http://localhost:8080/osrmt
Linux上麻烦了一点,为了能有界面:
1、设置DISPLAY环境变量DISPLAY=目标机IP:0.0
2、下载 Xmanager 启动为被动模式
3、将zip包解压,然后 java -jar xxxxx.jar
然后再Windows下一步一步安装就OK了
然后配置数据库连接
分别在path/client path/server/jboss.x.x.x/bin 下面有两个connection.xml
我们使用的mysql数据库,主要配置4个地方,
一个是连接数据库的driver
然后是数据库的 连接url,
然后 用户名
然后 密码
<?xml version="1.0" encoding="UTF-8"?>
<java version="1.5.0_04" class="java.beans.XMLDecoder">
<object class="com.osframework.datalibrary.common.ConnectionProperty">
<void property="accessSequence">
<int>0</int>
</void>
<void property="active">
<boolean>true</boolean>
</void>
<void property="connectionType">
<string>Jdbc</string>
</void>
<void property="connectToURL">
<boolean>false</boolean>
</void>
<void property="driverClass">
<string>com.mysql.jdbc.Driver</string>
</void>
<void property="environment">
<string>access</string>
</void>
<void property="url">
<string>jdbc:mysql://localhost:3306/osrmt</string>
</void>
<void property="unicodeConnection">
<boolean>false</boolean>
</void>
<void property="username">
<string>osrmt</string>
</void>
<void property="password">
<string>osrmt</string>
</void>
</object>
</java>
<java version="1.5.0_04" class="java.beans.XMLDecoder">
<object class="com.osframework.datalibrary.common.ConnectionProperty">
<void property="accessSequence">
<int>0</int>
</void>
<void property="active">
<boolean>true</boolean>
</void>
<void property="connectionType">
<string>Jdbc</string>
</void>
<void property="connectToURL">
<boolean>false</boolean>
</void>
<void property="driverClass">
<string>com.mysql.jdbc.Driver</string>
</void>
<void property="environment">
<string>access</string>
</void>
<void property="url">
<string>jdbc:mysql://localhost:3306/osrmt</string>
</void>
<void property="unicodeConnection">
<boolean>false</boolean>
</void>
<void property="username">
<string>osrmt</string>
</void>
<void property="password">
<string>osrmt</string>
</void>
</object>
</java>
比较懒就直接贴了
转载于:https://blog.51cto.com/queniao/200936