美文网首页JHipster
Centos搭建微服务平台Jhipster---注册中心Regi

Centos搭建微服务平台Jhipster---注册中心Regi

作者: 小芃同学 | 来源:发表于2019-06-03 11:15 被阅读2次

    请先搭建开发环境

    Jhipster Registry 简介

    The JHipster Registry is a runtime application, provided by the JHipster team. Like the JHipster generator, it is an Open Source, Apache 2-licensed application, and its source code is available on GitHub under the JHipster organization at jhipster/jhipster-registry.

    翻译一下:

    JHipster Registry是一个运行时应用程序,由JHipster团队提供。 与JHipster生成器一样,它是一个开源的,Apache 2许可的应用程序,其源代码在jhipster/jhipster-registry

    JHipster Registry作用:

    • 它是一个Eureka服务器,用作应用程序的发现服务器。 这就是JHipster如何处理所有应用程序的路由,负载平衡和可伸缩性。

    • 它是一个Spring Cloud Config服务器,为所有应用程序提供运行时配置。

    • 它是一个管理服务器,带有用于监视和管理应用程序的仪表板。


    官网有三种安装方式可以参考,这里就不再一一讲解,相信都可以看明白。

    • 使用预打包的war文件
    • 从源代码生成
    • 使用Docker直接创建

    都比较简单,Jhipster已经为我们生成好了,以下方法选一个就行了。

    编译源文件启动war

    git clone https://github.com/jhipster/jhipster-registry.git
    # 进入到项目根目录,编译启动
    cd jhipster-registry
    mvn clean package
    java -jar target/jhipster-registry-2.5.7.war
    

    docker启动

    docker拉取一个JHipster Registry镜像来作为我们这个系列的注册中心,Docker安装请参考这里
    运行命令

    docker container run --name registry -d -p 8761:8761 jhipster/jhipster-registry
    

    启动起来之后,可以访问http://localhost:8761/即可看到注册中心页面
    帐号 admin 密码 admin

    register.png

    相关文章

      网友评论

        本文标题:Centos搭建微服务平台Jhipster---注册中心Regi

        本文链接:https://www.haomeiwen.com/subject/bmiqxctx.html