You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -188,6 +184,8 @@ From your development machine, use `cf-remote` to install CFEngine on the Linux
188
184
$ cf-remote install --hub hub --bootstrap hub
189
185
```
190
186
187
+
CFEngine is now installed and running on your hub, including the Web UI, the reporting database, and the components responsible for making changes to your system, serving and fetching policy, etc.
188
+
191
189
## Open the CFEngine Web UI
192
190
193
191
Open the CFEngine Web UI in a web browser by clicking this link, or typing the appropriate IP in the address bar:
(Log in with username `admin` and password `admin`, or whatever you changed it to when you first logged into your hub).
135
126
136
-
You can open an inventory report by clicking _Reports_ in the left navigation bar, and then _Inventory_.
137
-
Inside the report you can add a new column with the data from our `inventory-sudoers` module, it shows up as _Users with sudo_:
138
-
139
-

140
-
141
-
(Reports in CFEngine Mission Portal can be saved as PDF or CSV or scheduled to be sent to your email periodically).
142
-
143
127
By clicking on _Reports_ and _Compliance_ we can see the report we added, _OS is vendor supported_:
144
128
145
129

146
130
131
+
(Reports in CFEngine Mission Portal can be saved as PDF or CSV or scheduled to be sent to your email periodically).
132
+
147
133
## What's next
148
134
149
135
Now that you've successfully added modules and seen the results in Mission Portal, you're ready to look for more modules, or explore Mission Portal further.
150
136
Here are some examples of modules you might be interested in:
151
137
152
138
*[Scan and report on potentially vulnerable log4j installations](https://build.cfengine.com/modules/cve-2021-44228-log4j/)
153
-
*[Make policy fetching, evaluation, and reporting happen every minute](https://build.cfengine.com/modules/every-minute/)
139
+
*[Inventory (reporting) data of who can use sudo on each host](https://build.cfengine.com/modules/inventory-sudoers/)
154
140
*[Promise type to perform HTTP requests](https://build.cfengine.com/modules/promise-type-http/)
155
141
156
142
To add more modules, just repeat the commands from steps 1-3, for example:
`rm /tmp/hello` deletes the file, causing the agent to recreate it.
91
+
When experimenting with modules, policy, and making changes, knowing how to perform an agent run to speed things up or get feedback from what your policy is doing can be useful.
92
+
This is similar to triggering an agent run with the buttons in Mission Portal, or logging in with `ssh` and running `cf-agent --no-lock --info` from the command prompt.
93
+
94
+
**Tip:**`cf-agent --no-lock --info` can also be written using short options; `cf-agent -KI`.
95
+
96
+
To test that our policy works, let's delete the `/tmp/hello` file and watch CFEngine create it:
0 commit comments