ユーザ用ツール

サイト用ツール


01_linux:99_その他:63_adaptech_setpriority

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

次のリビジョン
前のリビジョン
01_linux:99_その他:63_adaptech_setpriority [2016/10/07 05:25] – 作成 matsui01_linux:99_その他:63_adaptech_setpriority [2020/10/02 22:12] (現在) matsui
行 1: 行 1:
 +====== 63 Adaptech set priority 優先度変更 ======
 +
 +===== arcconfig =====
 +
 +タスクやリビリルドのプライオリティ変更
 +
 +  ARCCONF SETPRIORITY 1 <task_id> HIGH
 +  ARCCONF SETPRIORITY 1 LOW CURRENT
 +
 +
 +===== タスクの優先度下げる =====
 +
 +==== タスクの確認 ====
 +<code>
 +# /usr/StorMan/arcconf getstatus 1
 +Controllers found: 1
 +Logical device Task:
 +   Logical device                 : 1
 +   Task ID                        : 101
 +   Current operation              : Rebuild
 +   Status                         : In Progress
 +   Priority                       : Hight
 +   Percentage complete            : 2
 +</code>
 +
 +==== setpriority ====
 +<code>
 +# /usr/StorMan/arcconf setpriority 1 101 LOW
 +</code>
 +
 +==== 再確認 ====
 +<code>
 +# /usr/StorMan/arcconf getstatus 1
 +Controllers found: 1
 +Logical device Task:
 +   Logical device                 : 1
 +   Task ID                        : 101
 +   Current operation              : Rebuild
 +   Status                         : In Progress
 +   Priority                       : Low
 +   Percentage complete            : 2
 +</code>
 +
 +===== 全体のプライオリティ変更 =====
 +
 +<code>
 +# /usr/StorMan/arcconf getconfig 1
 +Controllers found: 1
 +----------------------------------------------------------------------
 +Controller information
 +----------------------------------------------------------------------
 +   Controller Status                        : Optimal
 +   Channel description                      : SAS/SATA
 +   Controller Model                         : Adaptec 5805Q
 +   Controller Serial Number                 : 0A351174ACC
 +   Physical Slot                            : 4
 +   Temperature                              : 83 C/ 181 F (Normal)
 +   Installed memory                         : 512 MB
 +   Copyback                                 : Disabled
 +   Background consistency check             : Disabled
 +   Automatic Failover                       : Enabled
 +   Global task priority                     : Hight
 +   
 +
 +# /usr/StorMan/arcconf setpriority 1 LOW CURRENT
 +
 +
 +
 +# /usr/StorMan/arcconf getconfig 1
 +Controllers found: 1
 +----------------------------------------------------------------------
 +Controller information
 +----------------------------------------------------------------------
 +   Controller Status                        : Optimal
 +   Channel description                      : SAS/SATA
 +   Controller Model                         : Adaptec 5805Q
 +   Controller Serial Number                 : 0A351174ACC
 +   Physical Slot                            : 4
 +   Temperature                              : 83 C/ 181 F (Normal)
 +   Installed memory                         : 512 MB
 +   Copyback                                 : Disabled
 +   Background consistency check             : Disabled
 +   Automatic Failover                       : Enabled
 +   Global task priority                     : Low
 +</code>
 +
 +{{tag>Adaptech}}