Error: Unable to access jarfile

I Hello everyone, I am not very expert in ALMALINUX, previously I had CENTOS7 on the VPS and everything worked fine, but we no longer have that operating system and I have to migrate everything to ALMALINUX, but the services do not work well, in particular if I have a service services: into /etc/systemd/system/

[Unit]
Description=Start Java Application
Requires=network-online.target
After=network-online.target
StartLimitIntervalSec=0

[Service]
Type=Application
ExecStart=/etc/init.d/startteleiosais.sh
User=root
Environment=“PATH=/root/”
WorkingDirectory=/root/

[Install]
WantedBy=multi-user.target

and the file /etc/init.d/startteleiosais.sh

#!/bin/bash
echo “Starting application.”
#sudo su
echo “$HOME”
echo “$JAVA_HOME”
echo “$PATH”
exec /usr/bin/java -jar “$HOME/ais_1000.jar” 10.35.30.12 8030 MXHCO

and after systemctl status teleiosAIS.service -l say
● teleiosAIS.service - Start Java Application
Loaded: loaded (/etc/systemd/system/teleiosAIS.service; disabled; vendor preset: disabled)
Active: failed (Result: exit-code) since Fri 2025-01-10 11:09:36 CST; 1h 49min ago
Process: 10508 ExecStart=/etc/init.d/startteleiosais.sh (code=exited, status=1/FAILURE)
Main PID: 10508 (code=exited, status=1/FAILURE)

Jan 10 11:09:36 Huatulco systemd[1]: Started Start Java Application.
Jan 10 11:09:36 Huatulco startteleiosais.sh[10508]: Starting application.
Jan 10 11:09:36 Huatulco startteleiosais.sh[10508]: /root
Jan 10 11:09:36 Huatulco startteleiosais.sh[10508]: /opt/sqlanywhere17/bin64/jre180
Jan 10 11:09:36 Huatulco startteleiosais.sh[10508]: /opt/sqlanywhere17/bin64/jre180/bin:/root:/opt/sqlanywhere17/bin64:/opt/sqlanywhere17/bin64s:>
Jan 10 11:09:36 Huatulco startteleiosais.sh[10508]: Error: Unable to access jarfile /root/ais_1000.jar
Jan 10 11:09:36 Huatulco systemd[1]: teleiosAIS.service: Main process exited, code=exited, status=1/FAILURE
Jan 10 11:09:36 Huatulco systemd[1]: teleiosAIS.service: Failed with result ‘exit-code’.

can someone help me?