TencentCloud Automation Tools (TAT) is a native Ops deployment tool for Tencent Cloud CVM and Lighthouse instances. It supports console and API operations. With TAT, you can execute shell commands in batch without connecting to an instance remotely.
You can create and execute commands in the Lighthouse console. For more details, see Getting Started.
TAT supports all Linux 64-bit releases.
Yes.
You can check the command execution status by logging in to the instance or in the Lighthouse console. For more details, see Checking Command Execution Status.
Common reasons:
tail -n4 /usr/bin/ls
, the output of the command is in garbled characters.The default installation path is /usr/local/qcloud/tat_agent/
.
Two approaches are provided:
cd /usr/local/qcloud/tat_agent/log/
. You can check the running logs of the agent.ps -ef | grep tat_agent
to check the process status. If the process does not exist, execute /usr/local/qcloud/tat_agent/tat_agent
to start the process or reinstall the TAT agent.Download the installation package, decompress and install. See Installing TAT Agent.
It means that the TAT agent is not correctly installed in the instance. Please re-install the agent as instructed in Installing TAT Agent.
It may be caused by the configuration of PATH environment variables. Please use an absolute path to execute the command, or make sure that the command path is in the PATH environment variable. For example, you can replace python3 test.py
with /usr/local/bin/python3 test.py
.
Run the command according to your OS.
Was this page helpful?