Agent のインストール
- 印刷する
- PDF
Agent のインストール
- 印刷する
- PDF
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
サーバのログ収集を設定します。
Agentのインストール
サーバログ収集設定後、実際にサーバのログを収集するためにはこのサーバにアクセスして agentをインストールする必要があります。
agentのインストールは API呼び出し結果に出る resultを configKeyとして使い、agentをインストールするためには以下のようなコマンドをサーバで実行します。
Classic Linuxサーバ
curl -s http://cm.cla.ncloud.com/setUpCla/{configKey} | sudo sh
VPC Linuxサーバ
curl -s http://cm.vcla.ncloud.com/setUpClaVPC/{configKey} | sudo sh
Classic Windowsサーバ
Invoke-Expression $((New-Object System.Net.WebClient).DownloadString("http://cm.cla.ncloud.com/setUpwinCla/{configKey}"))
VPC Windowsサーバ
Invoke-Expression $((New-Object System.Net.WebClient).DownloadString("http://cm.vcla.ncloud.com/setUpwinClaVPC/{configKey}"))
この記事は役に立ちましたか?