0


ubuntu22.04开机自启动Eureka服务

ubuntu22.04开机自启动Eureka服务

1、创建启动脚本eurekaService.sh

#我们把启动脚本放在/usr/software目录下cd /usr/software
vim eurekaService.sh

eurekaService.sh内容为

#!/bin/sh# this is a eurekaService shell to startup at the mechian power on.echo"eurekaServer-0.0.1-SNAPSHOT.jar service start loading..."nohupjava-jar /usr/software/eurekaServer-0.0.1-SNAPSHOT.jar > /usr/software/log.txt 2>&1&echo"eurekaService loads successful"

2、赋予可执行权限

chmod777 eurekaService.sh

3、新建要启动的Eureka服务文件

#新建要启动的服务文件vim /etc/systemd/system/eureka.service

eureka.service内容为

[Unit]Description=this is eurekaService 
After=network.target
[Service]Type=forking
ExecStart=/usr/software/eurekaService.sh  #指定上面创建的脚步文件路径[Install]WantedBy=multi-user.target  #多用户

4、启动Eureka服务

#让系统获取到你刚自定义的service文件并设置开机启动
systemctl daemon-reload
systemctl start eureka.service

systemctl enable eureka.service

#查看日志
systemctl status eureka.service
标签: eureka 云原生

本文转载自: https://blog.csdn.net/JingLisen/article/details/132739620
版权归原作者 勤奋的凯尔森同学 所有, 如有侵权,请联系我们删除。

“ubuntu22.04开机自启动Eureka服务”的评论:

还没有评论