File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ vagrant up
29
29
30
30
USAGE
31
31
======
32
- Sensu Dashboard will be available at http://192.168.1 .10:8080
32
+ Sensu Dashboard will be available at http://10.254.254 .10:8080 , username "admin" password "secret".
33
33
34
- The client machine IP is 192.168.1.11
35
- The server machine IP is 192.168.1.10
34
+ The client machine IP is 10.254.254.10
35
+ The server machine IP is 10.254.254.11
36
36
37
37
To SSH into each machine:
38
38
```
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ Vagrant.configure("2") do |config|
26
26
chef . add_recipe "sensu-tutorial::vim"
27
27
chef . add_recipe "sensu-tutorial::server"
28
28
end
29
- sensu_server_config . vm . network :private_network , ip : "192.168.1 .10"
29
+ sensu_server_config . vm . network :private_network , ip : "10.254.254 .10"
30
30
end
31
31
32
32
# Sensu Client
@@ -43,15 +43,15 @@ Vagrant.configure("2") do |config|
43
43
sensu_client_config . vm . provision :chef_solo do |chef |
44
44
chef . json = {
45
45
"monitor" => {
46
- "master_address" => "192.168.1 .10"
46
+ "master_address" => "10.254.254 .10"
47
47
}
48
48
}
49
49
chef . cookbooks_path = "cookbooks"
50
50
chef . data_bags_path = "data_bags"
51
51
chef . add_recipe "sensu-tutorial::iptables_disable"
52
52
chef . add_recipe "sensu-tutorial::client"
53
53
end
54
- sensu_client_config . vm . network :private_network , ip : "192.168.1 .11"
54
+ sensu_client_config . vm . network :private_network , ip : "10.254.254 .11"
55
55
end
56
56
57
57
end
You can’t perform that action at this time.
0 commit comments