merge main
This commit is contained in:
commit
5a00f076a3
|
@ -575,11 +575,12 @@ function install_config() {
|
||||||
function install_share_etc() {
|
function install_share_etc() {
|
||||||
[ ! -d ${script_dir}/share/etc ] && return
|
[ ! -d ${script_dir}/share/etc ] && return
|
||||||
for c in `ls ${script_dir}/share/etc/`; do
|
for c in `ls ${script_dir}/share/etc/`; do
|
||||||
if [ -e /etc/$c ]; then
|
if [ -e /etc/${clientName2}/$c ]; then
|
||||||
out=/etc/$c.new.`date +%F`
|
out=/etc/${clientName2}/$c.new.`date +%F`
|
||||||
${csudo}cp -f ${script_dir}/share/etc/$c $out ||:
|
${csudo}cp -f ${script_dir}/share/etc/$c $out ||:
|
||||||
else
|
else
|
||||||
${csudo}cp -f ${script_dir}/share/etc/$c /etc/$c ||:
|
${csudo}mkdir -p /etc/${clientName2} >/dev/null 2>/dev/null ||:
|
||||||
|
${csudo}cp -f ${script_dir}/share/etc/$c /etc/${clientName2}/$c ||:
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
TDengine is an open-source, cloud-native time-series database optimized for Internet of Things (IoT), Connected Cars, and Industrial IoT. With its built-in caching, stream processing, and data subscription capabilities, TDengine offers a simplified solution for time-series data processing.
|
TDengine is an open-source, cloud-native time-series database optimized for Internet of Things (IoT), Connected Cars, and Industrial IoT. With its built-in caching, stream processing, and data subscription capabilities, TDengine offers a simplified solution for time-series data processing.
|
||||||
|
|
||||||
To configure TDengine : edit /etc/taos/taos.cfg
|
• To configure TDengine, edit /etc/taos/taos.cfg
|
||||||
To start service : launchctl start com.tdengine.taosd
|
• To start service, run launchctl start com.tdengine.taosd
|
||||||
To start Taos Adapter : launchctl start com.tdengine.taosadapter
|
• To start Taos Adapter, run launchctl start com.tdengine.taosadapter
|
||||||
To access TDengine : use taos in shell
|
• To access TDengine from your local machine, run taos
|
||||||
|
|
||||||
If you're experiencing problems installing TDengine, check the file /var/log/taos/tdengine_install.log to help troubleshoot the installation.
|
If you're experiencing problems installing TDengine, check the file /var/log/taos/tdengine_install.log to help troubleshoot the installation.
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
TDengine is an open-source, cloud-native time-series database optimized for Internet of Things (IoT), Connected Cars, and Industrial IoT. With its built-in caching, stream processing, and data subscription capabilities, TDengine offers a simplified solution for time-series data processing.
|
TDengine is an open-source, cloud-native time-series database optimized for Internet of Things (IoT), Connected Cars, and Industrial IoT. With its built-in caching, stream processing, and data subscription capabilities, TDengine offers a simplified solution for time-series data processing.
|
||||||
|
|
||||||
Once it's installed, please take the steps below:
|
After the installation process is complete, perform the following steps to start using TDengine:
|
||||||
1: open a terminal/shell in Mac
|
1: Open Terminal on your Mac.
|
||||||
2: if connecting to Cloud Service, follow the instructions on your cloud service account and configure the environment variable
|
2: To connect to a TDengine server using the default settings and credentials, run the taos command.
|
||||||
3: if connecting to another TDengine Service, you can also view help information via "taos --help"
|
3: To connect to a TDengine server using custom settings or credentials, run taos --help for more information.
|
||||||
4: execute command taos
|
4: To connect to TDengine Cloud, follow the instructions on the Tools - TDengine CLI page in your TDengine Cloud account.
|
||||||
|
|
||||||
If you're experiencing problems installing TDengine, check the file /var/log/taos/tdengine_install.log to help troubleshoot the installation.
|
If any issues occur during installation, check the /var/log/taos/tdengine_install.log file to troubleshoot.
|
Loading…
Reference in New Issue