Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Servidor Aion - OLD CLASS /
chat-server /
Delete
Unzip
Name
Size
Permission
Date
Action
config
[ DIR ]
drwxrwxrwx
2024-11-22 16:30
libs
[ DIR ]
drwxrwxrwx
2025-05-20 00:20
log
[ DIR ]
drwxrwxrwx
2025-06-03 05:13
sql
[ DIR ]
drwxrwxrwx
2024-11-22 16:30
start.bat
440
B
-rwxrwxrwx
2024-09-07 17:22
start.sh
1.86
KB
-rw-rw-rw-
2024-09-07 17:22
Save
Rename
#!/bin/bash #===================================================================================== # Usage: ./start.sh [jvmArgs] # Parameters: jvmArgs # additional arguments to the JVM process starting the server # Description: Starts the server and restarts it depending on returned exit code. #===================================================================================== loop() { while true; do java -Xms72m -Xmx72m -XX:+UseNUMA $@ -cp "libs/*" com.aionemu.chatserver.ChatServer err=$? case $err in 0) # regular shutdown echo "Chat server stopped." break ;; 1) # critical config or build error >&2 echo "Chat server stopped with a fatal error." break ;; 2) # restart request echo "Restarting chat server..." ;; 130) # SIGINT / Ctrl+C echo "Chat server process was stopped." break ;; 137|143) # 137=SIGKILL, 143=SIGTERM echo "Chat server process was killed." break ;; *) # other >&2 echo "Chat server has terminated abnormally (code: $err), restarting in 5 seconds." sleep 5 ;; esac done exit $err } pid=$(jps -l | grep com.aionemu.chatserver.ChatServer | awk '{print $1}') if [[ -n $pid ]]; then echo "Chat server is already running (PID $pid)" read -p "Shut it down? (y/n) " answer if [[ $answer =~ ^y(es)?$ ]]; then if [[ -n $MSYSTEM ]]; then # MinGW (like Git Bash on Windows) /bin/kill -fW -SIGINT $pid # -W parameter tells kill command it's a Windows PID else kill -SIGINT $pid fi echo "Sent stop signal" until ! (jps -q | grep ^$pid$ > /dev/null); do echo "Waiting for shutdown..."; sleep 1; done else echo "Aborting server start" exit 1 fi fi cd "$(dirname "$(readlink -f "$0")")" loop $@