“WSO2 API Manager”与“WSO2 Data Analytics Server”和“WSO2 Application Server”之间究竟有什么区别?

时间:2017-02-23 13:40:43

标签: api wso2 wso2is wso2-am wso2as

我在 WSO2 中绝对是新的,我有以下疑问。

我正在关注此官方培训视频课程:http://wso2.com/training/apim-self-paced?video=2#request_training_enroll

包含labkit PDF(您可以单击* Download Lab kit **按钮获取它。

所以在这个PDF文件的开头,它也被解释为安装并启动这3 WSO2 组件:

1) WSO2 API Manager https://docs.wso2.com/display/AM1100/Installing+on+Windows

2) WSO2数据分析服务器https://docs.wso2.com/display/DAS300/Installing+on+Windows

3) WSO2 Application Server https://docs.wso2.com/display/AS530/Installing+on+Windows

我已正确安装这3个软件,我可以启动这些Web应用程序进入 / bin / 并执行此bat文件:

wso2server.bat --run

然后我访问这些软件的Web界面,在浏览器中打开此URL:

https://localhost:9443/carbon/

我的主要疑问是,为这3个软件中的每个软件打开此URL我总是获得相同的Web界面。此外,如果我以管理员凭据登录,我将获得相同的仪表板。

那么这三款软件究竟有什么区别?因为我需要使用一个而不是另一个吗?

2)全部在 9443 端口上运行,因此我无法同时运行这些软件。也许我要改变端口来做它?

1 个答案:

答案 0 :(得分:1)

您需要更改每个工具的端口偏移量:

[WSO2_TOOL]\repository\conf\carbon.xml  

在以下部分:

<Ports>

    <!-- Ports offset. This entry will set the value of the ports defined below to
     the define value + Offset.
     e.g. Offset=2 and HTTPS port=9443 will set the effective HTTPS port to 9445
     -->
    <Offset>0</Offset>

例如:

对于API Manager = 0

网址:https://localhost:9443/carbon/

用于:API开发

对于DAS = 1

网址:https://localhost:9444/carbon/

用于:监控与其集成的其他工具和IoT

对于AS = 2

网址:https://localhost:9445/carbon/

用于:在axis2和jax-ws中部署Web服务,并部署webapp。