https://developer.ibm.com/wasdev/downloads/#asset/runtimes-wlp-javaee8
二笑散、安岁升没装Liberty
#unzip wlp-javaee8-19.0.0.2.zip -d /opt/was
乎纳 #[root@centos7 ~]# /opt/was/wlp/bin/server start Starting server defaultServer.
Server defaultServer started with process ID 237.
bin/installUtility install adminCenter-1.0
If you are installing into 8.5.5.5 or earlier and the feature supports that version, use the featureManager command,
for example:
bin/featureManager install adminCenter-1.0 --when-file-exists=ignore
服务器的配置基本都在wlp\usr\servers\server1\server.xml 文件中配置
添加配置 server.xml
<featureManager>
<feature>adminCenter-1.0</feature>
</featureManager>
<quickStartSecurity userName="wsadmin" userPassword="wsadmin" /><!--管理台的账号密码-->
程序启动后,访问:
https://localhost:9443/adminCenter/ nCenter 管理中心
由于项目里面需要使用到分布式事务,为了解决这个难题,调研了一些分布式事务框架,希望让开发用个注解就能解决内部系统之间的调用问题。 最终选择了seata
官方文档:
https://seata.io/zh-cn/docs/overview/what-is-seata.html
https://github.com/seata/seata/releases
官方安装指南
http://seata.io/zh-cn/docs/ops/deploy-guide-beginner.html
Seata分TC、TM和RM三个角色,TC(喊锋Server端)为单独服务端部署,TM和RM(Client端)由业务系统集成。
Server端存储模式(store.mode)现有file、db两种(后续将引入redis、raft),file模式无需改动,直接启动即可,下面专门讲下db启动步骤。
注:file模式为单机模式,全局事务会话信息内存中读写并持久化本地文件root.data,性能较高
db模式为高可用模式,全局事务会话信息通轿旅过db共享,相应性能差些。
全局事务会话信息由3块内容构成,全局闭渗凳事务-->分支事务-->全局锁,对应表global_table、branch_table、lock_table
启动包: seata-->conf-->file.conf,修改store.mode="db"
源码: 根目录-->seata-server-->resources-->file.conf,修改store.mode="db"
启动包: seata-->conf-->file.conf,修改store.db相关属性。
源码: 根目录-->seata-server-->resources-->file.conf,修改store.db相关属性。
注: 堆内存建议分配2G,堆外内存1G
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)