-
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.
- Loading branch information
1 parent
5ed45d9
commit 0b4a8a6
Showing
1 changed file
with
188 additions
and
81 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,81 +1,188 @@ | ||
## [Zabbix Server / Agent](https://opiran-club.github.io/Zabbix/) | ||
|
||
### βΌοΈ INSTRUCTION βΌοΈ | ||
|
||
#### π With root user | ||
|
||
``` | ||
bash <(curl -s https://raw.githubusercontent.com/opiran-club/Zabbix/main/install/server.sh --ipv4) | ||
``` | ||
|
||
[Zabbic official documents manual](https://www.zabbix.com/documentation/current/en/manual) | ||
# | ||
# | ||
#### After finnish up installer Navigate to | ||
``` | ||
http(S)://IP-ADDRESS/zabbix | ||
``` | ||
# | ||
# | ||
# | ||
|
||
### 1) click Next | ||
![image](https://github.com/user-attachments/assets/ea3a0fda-a1f0-4314-bfe6-cc09262563ef) | ||
# | ||
### 2) click Next | ||
![image](https://github.com/user-attachments/assets/6bd28102-237a-4be1-bc59-155d794baa1f) | ||
# | ||
### 3) type your password that you entered during setup | ||
![image](https://github.com/user-attachments/assets/0135feae-9c36-4424-9b7d-c9efd555d70f) | ||
# | ||
### 4) type your desire name and select your timezone | ||
![image](https://github.com/user-attachments/assets/51de5184-7063-4530-84ec-593ce53ad563) | ||
# | ||
### 5) click next | ||
![image](https://github.com/user-attachments/assets/81c5869b-316c-4569-9899-ce56969ab405) | ||
# | ||
### 6) finnish | ||
![image](https://github.com/user-attachments/assets/b8860cb0-e5e0-430f-a48d-1dff37b44da5) | ||
# | ||
|
||
## after finnishing setup , login the dashboard using | ||
#### π username is: | ||
``` | ||
Admin | ||
``` | ||
#### π password is: | ||
``` | ||
zabbix | ||
``` | ||
### go to users tab and change default password | ||
### for reference document π https://www.zabbix.com/documentation/current/en/manual/quickstart/login | ||
# | ||
----------------------------------------------------------------------------------------- | ||
# | ||
# | ||
# | ||
#### To stop and start Zabbix server | ||
|
||
``` | ||
service zabbix-server stop / service zabbix-server start | ||
``` | ||
|
||
#### To stop and start MySQL server | ||
|
||
``` | ||
service mysql stop / service mysql start | ||
``` | ||
|
||
#### To stop and start agent service | ||
|
||
``` | ||
service zabbix-agent stop / service zabbix-agent start | ||
``` | ||
|
||
--------------------------------------------------------------------------------------------------------------------------------------- | ||
|
||
### Credits | ||
- credited by [OPIran](https://github.com/opiran-club) | ||
|
||
### Contacts | ||
- Visit Me at [OPIran-Gap](https://t.me/opiran_official) | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Zabbix Server / Agent 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: #333; | ||
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); | ||
} | ||
|
||
h1, h2, h3 { | ||
color: #333; | ||
} | ||
|
||
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: #ffeb3b; | ||
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: center; | ||
} | ||
|
||
.credits a, .contacts a { | ||
color: #fff; | ||
text-decoration: underline; | ||
} | ||
|
||
.credits a:hover, .contacts a:hover { | ||
text-decoration: none; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Zabbix Server / Agent 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">Zabbic official documents manual</a></p> | ||
</section> | ||
|
||
<section> | ||
<h3>After finishing the installer, navigate to</h3> | ||
<pre><code>http(S)://IP-ADDRESS/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>© 2024 Zabbix Installation Guide</p> | ||
</footer> | ||
</body> | ||
</html> |