环境搭建_jar包部署成本地服务(Windows)
实验环境:windows server2008R2 、windows10一、下载winws.exe和winws.xml下载地址:https://github.com/kohsuke/winsw/releases下载红色处:把exe文件、xml文件以及要打包成服务的jar包使用同名,方便管理二、编辑auth-admin配置文件:<configuration>&l...
·
实验环境:windows server2008R2 、windows10
一、下载winws.exe和winws.xml
下载地址:https://github.com/kohsuke/winsw/releases
下载红色处:
把exe文件、xml文件以及要打包成服务的jar包使用同名,方便管理
二、编辑auth-admin配置文件:
<configuration>
<!-- ID of the service. It should be unique accross the Windows system-->
<id>auth-admin</id>
<!-- Display name of the service -->
<name>auth-admin</name>
<!-- Service description -->
<description>统一支撑平台</description>
<executable>java</executable>
<arguments>-jar auth-admin.jar</arguments>
</configuration>
三、cmd命令行进入当前目录
打包成服务:
auth-admin.exe install
卸载服务:
auth-admin.exe uninstall
启动服务:
auth-admin.exe start
关闭服务:
auth-admin.exe stop
重启服务:
auth-admin.exe restart
查看状态:
auth-admin.exe status
脚本启动:
cd C:\Users\Administrator\Desktop\service\auth-admin
auth-admin.exe stop
auth-admin.exe uninstall
auth-admin.exe install
auth-admin.exe start
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)