server icon indicating copy to clipboard operation
server copied to clipboard

Suggestions

Open zl9801 opened this issue 6 years ago • 2 comments

Server Publishing task, if there is an unforeseen error, the client will be incorrectly exited, whether the error can be returned to the server to write to the log, skip this wrong task to continue to perform the following tasks. Because in the case of 8 clients or more, it is depressing to need to adjust the task level or delete the task, and then restart all clients, if an unforeseen error is encountered.

zl9801 avatar Jan 18 '19 01:01 zl9801

for clients you should ideally setup hashtopolis to run as a systemd service:

create /etc/systemd/system/hashtopolis.service

[Unit]
Description=Cracken Cloud
After=network.target
StartLimitIntervalSec=0

[Service]
Type=simple
Restart=always
RestartSec=10
User=root
ExecStart=/usr/bin/python3 /root/agents/hashtopolis.zip
StandardInput=tty-force
WorkingDirectory=/root/agents/

[Install]
WantedBy=multi-user.target

then

systemctl daemon-reload
systemctl enable hashtopolis.service
systemctl start hashtopolis.service

from there use automation to control your agents or make sure your jobs are well defined

evilmog avatar Jan 28 '19 16:01 evilmog

I think watchdog'ing clients is one part of this request. I think he is also looking for a way for the server to identify and mark tasks that users create that are not the correct syntax or have clear errors. Once they are marked bad consider them a priority of "0" and move on to the next task.

winxp5421 avatar Feb 15 '19 15:02 winxp5421

Moved to #884

zyronix avatar Jun 15 '23 12:06 zyronix