-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
192 lines (162 loc) · 5.73 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Zabbix Dashboard Installation Guide</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header, footer {
background-color: #444;
color: #fff;
padding: 1rem;
text-align: center;
}
main {
max-width: 800px;
margin: 2rem auto;
padding: 1rem;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2, h3 {
color: #222;
}
h1 {
color: #fff;
}
pre {
background-color: #f4f4f4;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 5px;
overflow-x: auto;
}
code {
font-family: 'Courier New', Courier, monospace;
background-color: #eee;
padding: 2px 4px;
border-radius: 3px;
}
.instruction {
background-color: #ffffe0;
padding: 1rem;
border-radius: 5px;
font-weight: bold;
margin: 1rem 0;
}
img {
max-width: 100%;
height: auto;
border: 1px solid #ddd;
border-radius: 5px;
margin: 1rem 0;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.section-divider {
margin: 2rem 0;
border-top: 1px solid #ddd;
}
.credits, .contacts {
text-align: left;
}
.credits a, .contacts a {
color: #FF0000;
text-decoration: underline;
}
.credits a:hover, .contacts a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>Zabbix Dashboard Installation Guide</h1>
</header>
<main>
<section class="instruction">
<h2>‼️ INSTRUCTION ‼️</h2>
<h3>👉 With root user</h3>
<pre><code>bash <(curl -s https://raw.githubusercontent.com/opiran-club/Zabbix/main/install/server.sh --ipv4)</code></pre>
<p><a href="https://www.zabbix.com/documentation/current/en/manual" target="_blank">Zabbix official documents manual</a></p>
</section>
<section>
<h3>After finishing the installer, navigate to</h3>
<pre><code>http(S)://IP(DOMAIN)/zabbix</code></pre>
</section>
<section>
<h3>1) Click Next</h3>
<img src="https://github.com/user-attachments/assets/ea3a0fda-a1f0-4314-bfe6-cc09262563ef" alt="Step 1">
</section>
<section>
<h3>2) Click Next</h3>
<img src="https://github.com/user-attachments/assets/6bd28102-237a-4be1-bc59-155d794baa1f" alt="Step 2">
</section>
<section>
<h3>3) Type your password that you entered during setup</h3>
<img src="https://github.com/user-attachments/assets/0135feae-9c36-4424-9b7d-c9efd555d70f" alt="Step 3">
</section>
<section>
<h3>4) Type your desired name and select your timezone</h3>
<img src="https://github.com/user-attachments/assets/51de5184-7063-4530-84ec-593ce53ad563" alt="Step 4">
</section>
<section>
<h3>5) Click Next</h3>
<img src="https://github.com/user-attachments/assets/81c5869b-316c-4569-9899-ce56969ab405" alt="Step 5">
</section>
<section>
<h3>6) Finish</h3>
<img src="https://github.com/user-attachments/assets/b8860cb0-e5e0-430f-a48d-1dff37b44da5" alt="Step 6">
</section>
<section class="section-divider"></section>
<section>
<h2>After finishing the setup, log in to the dashboard using</h2>
<h3>👉 Username is:</h3>
<pre><code>Admin</code></pre>
<h3>👉 Password is:</h3>
<pre><code>zabbix</code></pre>
<p>Go to the users tab and change the default password.</p>
<p>For reference, check the document 👉 <a href="https://www.zabbix.com/documentation/current/en/manual/quickstart/login" target="_blank">Zabbix Quickstart Guide</a></p>
</section>
<section class="section-divider"></section>
<section>
<h2>To stop and start Zabbix server</h2>
<pre><code>service zabbix-server stop / service zabbix-server start</code></pre>
</section>
<section>
<h2>To stop and start MySQL server</h2>
<pre><code>service mysql stop / service mysql start</code></pre>
</section>
<section>
<h2>To stop and start agent service</h2>
<pre><code>service zabbix-agent stop / service zabbix-agent start</code></pre>
</section>
<section class="section-divider"></section>
<section class="credits">
<h3>Credits</h3>
<p>Credited by <a href="https://github.com/opiran-club" target="_blank">OPIran</a></p>
</section>
<section class="contacts">
<h3>Contacts</h3>
<p>Visit me at <a href="https://t.me/opiran_official" target="_blank">OPIran-Gap</a></p>
</section>
</main>
<footer>
<p> Source Code <a href="https://github.com/opiran-club/zabbix" target="_blank"> Source Code</p>
</footer>
</body>
</html>