【开源GPS追踪】 之 服务器端opengts安装

国内大多数GPS追踪/定位 平台都是基于opengts 二次开发的,opengts 是一款开源的gps 跟踪软件。

下面摘自百度百科:

OpenGTS ™(“GPS跟踪系统”)是第一个可用的开源项目,专门提供基于网络的 GPS 跟踪服务。 迄今为止,OpenGTS™已被下载并投入了使用于95个国家。车辆和跟踪资产类型包括出租车,送货面包车,卡车/拖车,农用设备,个人车辆,服务车辆,集装箱,船舶,全地形车,专人跟踪,手机等。 虽然OpenGTS ™设计以填补需求入门级船队跟踪系统为主,它也是非常高度可配置和可扩展性以及规模较大的框架。

====================================================================================================

安装opengts:

需求:一台具有公网ip 的电脑,这里我使用的virtwire 的廉价VPS。 系统采用的是Ubuntu,尝试在centos上安装,在安装jave jdk 的时候遇到点问题,由于对Centos 和Java 都不是很熟悉,就在网上查找,发现一篇在Ubuntu上安装的教程,按部就班安装,一切OK。

最小配置:硬盘 2GB ,内存64MB

下面是具体教程步骤:

 

install opengts in ubuntu system: 

# sudo apt-get update

Install required software packages:

$ sudo apt-get install apache2 php5 mysql-server libmysql-java wget curl unzip ant

Provide mysql password during installation.

Start Mysql and apache2 services:

$ sudo /etc/init.d/mysql start

 

 如果上面安装遇到一些奇怪的问题,请安装下面的工具

 

Had the same issue with mysql-server-5.6 and this solution hs helped me:

launchpad: Bug #392051: [Karmic] logger command not found

Basically, the program logger got messed up;

It can be recreated by reinstalling the package bsdutils:

apt-get --reinstall install bsdutils

or

aptitude reinstall bsdutils

$ sudo /etc/init.d/apache2 start

Install openjdk: 安装jdk6 为好,后面对应7的需要修改成6

$ sudo apt-get install openjdk-6-jdk

openjdk-7-jdk

Download and install Apache Tomcat version 7-x-x.

$ wget -c http://apache.mirror.uber.com.au/tomcat/tomcat-7/v7.0.65/bin/apache-tomcat-7.0.65.zip

上面这个链接已经失效了,请到 http://download.csdn.net/detail/duanfei255/9572008

Extract tomcat package and copy everything to /usr/local/ directory.

$ sudo unzip apache-tomcat-7.0.65.zip

$ sudo cp -av apache-tomcat-7.0.65 /usr/local/

Define CATALINA_HOME environment and run the startup script.

$ export CATALINA_HOME=/usr/local/apache-tomcat-7.0.65/

 

echo "export CATALINA_HOME=/usr/local/apache-tomcat-7.0.65/" >> ~/.bashrc

$ cd /usr/local

$ sudo ln -s $CATALINA_HOME tomcat

$ cd /usr/local/apache-tomcat-7.0.65/bin

$ chmod a+x *.sh

$ ./startup.sh

$ sudo ln -s $CATALINA_HOME /usr/local/tomcat

Define JAVA_HOME environment:

$ export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64

$ echo "export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-amd64" >> ~/.bashrc

$ sudo ln -s $JAVA_HOME /usr/local/java

Configure JAVA mail setup and Java Connector:

First Download and setup mysql Java connector, extract package and copy mysql java connector to $JAVA_HOME/jre/lib/ext folder

$ cd /tmp/ && wget http://cdn.mysql.com//Downloads/Connector-J/mysql-connector-java-5.1.37.tar.gz

上面这个链接也有问题,下载地址http://download.csdn.net/detail/duanfei255/9572009

$ tar -xvf mysql-connector-java-5.1.37.tar.gz

$ cd mysql-connector-java-5.1.37

$ sudo cp mysql-connector-java-5.1.37-bin.jar $JAVA_HOME/jre/lib/ext

 

Now download and configure Java mail setup and copy that downloaded .jar file to $JAVA_HOME/jre/lib/ext folder.

$ cd /tmp/ && wget https://maven.java.net/content/repositories/releases/com/sun/mail/javax.mail/1.5.4/javax.mail-1.5.4.jar

$sudo cp javax.mail-1.5.4.jar $JAVA_HOME/jre/lib/ext/

Rename javax.mail-1.5.4.jar to javax.mail.jar:

$ mv $JAVA_HOME/jre/lib/ext/javax.mail-1.5.4.jar $JAVA_HOME/jre/lib/ext/javax.mail.jar

Download OpenGTS:

$ cd /tmp && wget http://ncu.dl.sourceforge.net/project/opengts/server-base/2.6.0/OpenGTS_2.6.0.zip

Extract package to /usr/local folder:

$ sudo unzip OpenGTS_2.6.0.zip -d /usr/local/

Set up GTS_HOME environment:

$ export GTS_HOME=/usr/local/OpenGTS_2.6.0/

$ echo "export GTS_HOME=/usr/local/OpenGTS_2.6.0" >> ~/.bashrc

$ sudo ln -s $GTS_HOME /usr/local/gts

 

Change ownership for user currently logged in before running next command:

$ sudo chown -R unixmen:sudo /usr/local/OpenGTS_2.6.0/

Now change directory to $GTS_HOME and run following command:

&& ant all

If everything goes smooth, output will be something like below.

Define database user name and password (Note that we are still in $GTS_HOME).

$ bin/initdb.sh -rootUser=root -rootPass=password

Sample output:

Run ant track command which will create a file named track.war, we have to copy that file to $CATALINA_HOME/webapps folder.

$ ant track

Sample output:

$ cp $GTS_HOME/build/track.war /usr/local/apache-tomcat-7.0.65/webapps/ Before moving ahead stop and restart apache tomcat again $ $CATALINA_HOME/bin/startup.sh$ $CATALINA_HOME/bin/startup.sh

Open browser and type http://<ip_address>:8080/track/Track

Oops, we have not create a sysadmin account required to login the server, let us create it first.

$ cd $GTS_HOME/bin$ ./admin.sh Account -account=unixmen -pass=unixmen -create

Sample output

Now Provide these credentials and login

A welcome screen will appear:

Now installation and configuration part is over at this stage, configure your GPS tracking devices and you can use them with Open GTS.

 Conclusion

Track application configuration

  • Login to track application as sysadmin
  • Use System Admin – System Accounts to create new account ‘acct’ with a password of your choice
  • Logout and login as user ‘acct’
  • In Administration – Vehicle Admin add new device ‘dev’. Optionally edit it and set Unique ID to ‘dev’.
  • You should see your device location on the map in Mapping – Vehicle Map right after the first packet from your phone is sent in and accepted.

In the command line edit $GTS_HOME/webapp.conf. There is a section ‘GPS2OpenGTS configuration’ there. Set or uncomment these 2 lines:

#gprmc.parm.account=acct                                                                                                                                            
#gprmc.parm.device=dev

Rebuild and redeploy track and gprmc applications:

cd $GTS_HOME
ant track && ant track.deploy && ant gprmc && ant gprmc.deploy
or
ant track
ant gprmc
cp those two in ...(add later)

For debugging purposes you may also try calling the URL with a browser or curl like:

http://username.jvmhost.net:YOUR_TOMCAT_HTTP_PORT/gprmc/Data?acct=acct&dev=dev&gprmc=$GPRMC,172413,A,3848.8028,N,08957.3521,W,0,000.0,171111,,*16


 

 

As per my knowledge very fewer documentations related to OpenGTS installation are available, but official documentation will be sufficient to configure it. One problem which was faced by me during installation process is that OpenGTS show error when it was configured with latest version of Apache Tomcat.

It is recommended that you should use Apache tomcat version 7.0.x for that purpose. Although this practical guide was tested in Mint Linux 17 , but I believe that it will also work with Ubuntu 14.04/15.10.

 

change the map provider(recomand google map)

cd $GTS_HOME

vi private.xml

than ant track

ant track

everything ok, ant pass, copy track.war to tomacat/webapps

sudo cp $GTS_HOME/build/track.war /usr/local/apache-tomcat-7.0.65/webapps/

reboot computer...

start tomacat

$CATALINA_HOME/bin/startup.sh

if use google map, should change the map.google.com to map.google.cn in code base(google.com is blocked by greet wall)

fix gprmc.war bug(may better ways)

when i use gprmc.war, sometime there is a error location in the map with wrong time and location!

this may be a error caused by gprmc.war interpreted error,this error occur very random.

fixed method:

add a line in gprmc  only accept the point in china!--this can not eliminate the random error,but can reduce remarkable!

if(latitude >54 || latitude <3 || longitude >136 ||longitude <73)

   return; // not in china

*****before**

/*create/insert new event record*/

 

 

 

  • 重新编译

    ant clean 
    ant all

  • 安装

    • 复制 track.war 到tomat目录下的 webapps 下

      cd $GTS_HOME

      cp build/gprmc.war $CATALINA_HOME/webapps/.

    • 或者用 ant 安装

      cd $GTS_HOME 
      ant gprmc.deploy

  • 设备端软件 
    我们这里设备端是Android系统的手机。软件用的是GPSLogger。位于: 
    https://github.com/mendhak/gpslogger。它支持OPENGTS的GPRMC上传。

修改地图提供者

默认地图提供者是:openLayers 。现在需要改成 google 。需要修改配置文件 $GTS_HOME/private.xml 。

vim $GTS_HOME/private.xml

找到包含 google 的标签 MapProvider。修改:

<MapProvider name="googleMaps" 
    active="${Domain.MapProvider.active=false}"
    class="org.opengts.war.maps.jsmap.GoogleMaps"
    key="${Domain.MapProvider.key=***PLACE_AUTHORIZATION_KEY_HERE***}"
    rtPropPrefix="Domain.MapProvider.">

把 active=”${Domain.MapProvider.active=false}” 改成:active=”${Domain.MapProvider.active=true}” 
注意,原代码中用的是 maps.google.com 域名,被天朝限制了。需要把它替换成: www.google.cn

vim $GTS_HOME\src\org\opengts\war\maps\jsmap\GoogleMaps.java

把其中的 maps.google.com 替换成 www.google.cn

 

Have fun!!

转载于:https://www.cnblogs.com/tuzhuke/p/5615766.html

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
提供的源码资源涵盖了Java应用等多个领域,每个领域都包含了丰富的实例和项目。这些源码都是基于各自平台的最新技术和标准编写,确保了在对应环境下能够无缝运行。同时,源码中配备了详细的注释和文档,帮助用户快速理解代码结构和实现逻辑。 适用人群: 适合毕业设计、课程设计作业。这些源码资源特别适合大学生群体。无论你是计算机相关专业的学生,还是对其他领域编程感兴趣的学生,这些资源都能为你提供宝贵的学习和实践机会。通过学习和运行这些源码,你可以掌握各平台开发的基础知识,提升编程能力和项目实战经验。 使用场景及目标: 在学习阶段,你可以利用这些源码资源进行课程实践、课外项目或毕业设计。通过分析和运行源码,你将深入了解各平台开发的技术细节和最佳实践,逐步培养起自己的项目开发和问题解决能力。此外,在求职或创业过程中,具备跨平台开发能力的大学生将更具竞争力。 其他说明: 为了确保源码资源的可运行性和易用性,特别注意了以下几点:首先,每份源码都提供了详细的运行环境和依赖说明,确保用户能够轻松搭建起开发环境;其次,源码中的注释和文档都非常完善,方便用户快速上手和理解代码;最后,我会定期更新这些源码资源,以适应各平台技术的最新发展和市场需求。 所有源码均经过严格测试,可以直接运行,可以放心下载使用。有任何使用问题欢迎随时与博主沟通,第一时间进行解答!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值