karthick-rn commented on issue #388: URL: https://github.com/apache/fluo-muchos/issues/388#issuecomment-814811729
Actually the systemd commands were added to `accumulo-cluster` script as a convenience to handle start/stop of services in the cluster and was not part of the original source. As the problem is only with tserver restarts, may be there is something missing in the script, I'll look into that. For now, you can use something like `sudo systemctl <start/stop> [email protected]` to start/stop tserver. On the ZK, I understand - we are trying to minimise making changes to the original scripts as it adds overhead in maintaining it. Instead of manually ssh'ing into each node, you can do the below. ``` for host in leader1 leader2 leader3; do echo $host; ssh $host 'sh -c "zkServer.sh start"' done ``` > do muchos have option for existing storage account to use it on hadoop accumulo? If you're referring to the ADLS Gen2 storage account, then you'll have to update the required ADLS Gen2 fields in `muchos.props` from the existing storage account and not leave them to default. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
