Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Content imported from a Scroll Translations translation file.

...

Sv translation
languagede

Status
colourRed
titleThis page is only available in English

Sv translation
languagefr

Translations Ignore


Code Block
languagebash
dnf -y install https://cdn.jtel.de/downloads/java/jdk-8u202-linux-x64.rpm


Translations Ignore


Code Block
cp -a /home/jtel/shared/JTELCarrierPortal/Utils/Install/PlatformUDPlistener/ /home/jtel/ cp -a /home/jtel/PlatformUDPlistener/systemd/jtel-listener.service /etc/systemd/system rm -f /home/jtel/PlatformUDPlistener/conf/hazelcast.xml cp -a /home/jtel/shared/hazelcast.xml /home/jtel/PlatformUDPlistener/conf/hazelcast.xml


Translations Ignore


Code Block
languagebash
systemctl enable jtel-listener systemctl start jtel-listener


Translations Ignore


Code Block
languagebash
firewall-cmd --zone=public --add-port=5701-5801/tcp --permanent firewall-cmd --reload


Translations Ignore


Code Block
languagebash
service jtel-listener start


Translations Ignore


Code Block
languagebash
cat <<EOFF > /usr/local/bin/updatepl.sh #!/bin/bash service jtel-listener stop cp /home/jtel/shared/JTELCarrierPortal/Utils/Install/PlatformUDPlistener/bin/platform-UDP-listener-1.0-jar-with-dependencies.jar /home/jtel/PlatformUDPlistener/bin chown jtel:jtel /home/jtel/PlatformUDPlistener/bin/* service jtel-listener start EOFF chmod +x /usr/local/bin/updatepl.sh