-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update rule from Redfish v1.20.1 (#126)
* generate rule from v1.20.1 * add how to memo * update for review comment * deleted the double quoation
- Loading branch information
Showing
4 changed files
with
312 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
How to install collector command | ||
===================================== | ||
|
||
The collector command can run in a setup-hw container or on a bare metal Linux server. | ||
This memo describes how to install the command on a bare metal server. | ||
|
||
## 1.Clone code from github repository | ||
|
||
``` | ||
$ git clone https://github.com/cybozu-go/setup-hw | ||
``` | ||
|
||
## 2.Build & install collector command | ||
|
||
``` | ||
$ cd setup-hw | ||
$ make install | ||
``` | ||
|
||
## 3.Setup config | ||
|
||
Put a bmc-user.json file in /etc/neco/ that must have "support" user to use the collector command. | ||
|
||
``` | ||
{ | ||
"support": { | ||
"password": { | ||
"raw": "raw password here" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
Put a bmc-address.json file in /etc/neco. | ||
|
||
``` | ||
{ | ||
"ipv4": { | ||
"address": "192.0.2.3", | ||
"netmask": "255.255.255.0", | ||
"gateway": "192.0.2.1" | ||
} | ||
} | ||
``` | ||
|
||
please see [config.md](config.md) file. | ||
|
||
## 4.Check | ||
|
||
By following the above steps, you can execute the collector command. | ||
|
||
``` | ||
$ collector show | ||
``` | ||
|
||
Next, see [how to generate rules](how_to_generate_rules.md). |
Oops, something went wrong.