码迷,mamicode.com
首页 > 系统相关 > 详细

部署openfire到linux环境下

时间:2018-12-01 18:40:50      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:pre   版本库   路径   path   build.xml   cal   2.3   config   运行   

1.java环境部署:具体参考 http://blog.csdn.net/gufachongyang02/article/details/45337379


2.ant环境部署: 具体参考 http://blog.csdn.net/gufachongyang02/article/details/45337379



3.git安装部署(版本库使用的是git)

在安装git时要保证已安装zlib。zlib安装步骤如下:

先下载zlib,然后输入如下命令:

$tar -xvzf zlib-1.2.3.tar.gz (注意有时会报错:gzip stdin not in gzip format。改为命令tar -xf zlib-1.2.3.tar.gz)
$cd zlib-1.2.3.tar.gz
$./configure
$make
$sudo make install

接下来安装git

    tar -xzf  git-2.1.3.tar.gz  
    cd git-2.1.3  
    ./configure -prefix=/usr/local/git --with-curl  --with-expat  
    make && make install  

修改/etc/profile,在PATH中加入git路径,并执行source /etc/profile

[plain] view plain copy
 在CODE上查看代码片派生到我的代码片

    GIT_HOME=/usr/local/git  
    PATH=$PATH:$GIT_HOME/bin:$GIT_HOME/libexec/git-core  
    export PATH GIT_HOME  

运行git --version查看是否部署成功。

3.配置ssh密钥对  具体参考 http://blog.csdn.net/gufachongyang02/article/details/45337379


4.使用ant编译openfire :

ant -buildfile /usr/openfire/build.xml plugins

5.运行

跳转到target/bin目录下,运行 ./openfire.sh start

没有权限时,

chmod +x openfire.sh
就有了可执行权限,./sh就可以了  

./openfire.sh start
---------------------

部署openfire到linux环境下

标签:pre   版本库   路径   path   build.xml   cal   2.3   config   运行   

原文地址:https://www.cnblogs.com/tiancai/p/10050266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!