https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-8.5.0-linux-x86_64.tar.gz #!/bin/sh export JAVA_HOME=/opt/software/java11/jdk-11.0.11 export PATH=$JAVA_HOME/bin:$PATH export ES_HOME=/opt/software/elasticsearch/elasticsearch-7.6.1 export PATH=$ES_HOME/bin:$PATH if [ $# -lt 1 ] then echo "No Args Input..." exit ; fi case $1 in start) su - es -c "$ES_HOME/bin/elasticsearch -d -p pid" echo "elasticsearch is started" ;; stop) pid=`ps aux|grep elasticsearch | grep -v 'grep elasticsearch' | awk '{print $2}'` kill -9 $pid echo "elasticsearch is stopped" ;; restart) pid=`ps aux|grep elasticsearch | grep -v 'grep elasticsearch' | awk '{print $2}'` kill -9 $pid echo "elasticsearch is stopped" sleep 1 su - es -c "$ES_HOME/bin/elasticsearch -d -p pid" echo "elasticsearch is started" ;; *) echo "start|stop|restart" ;; esac exit 0 https://download.oracle.com/graalvm/17/archive/graalvm-jdk-17.0.8_linux-x64_bin.tar.gz https://archive.apache.org/dist/skywalking/java-agent/9.0.0/apache-skywalking-java-agent-9.0.0.tgz -javaagent:./agent/skywalking-agent.jar=agent.service_name=skywalking_mysql https://archive.apache.org/dist/skywalking/9.6.0/apache-skywalking-apm-9.6.0.tar.gz