码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • debian 10 安装apache2 zabbix


     nginx 可以略过,改为apache2

    1. apt update
    2. apt-get install nginx -y
    3. nginx -v
    4. nginx version: nginx/1.14.2
    1. mysql 安装参考linux debian10 安装mysql5.7_debian apt install mysql5.7-CSDN博客
    2. Install and configure Zabbix for your platform
    3. a. Install Zabbix repository

      Documentation

      1. wget https://repo.zabbix.com/zabbix/5.0/debian/pool/main/z/zabbix-release/zabbix-release_5.0-1+buster_all.deb
      2. dpkg -i zabbix-release_5.0-1+buster_all.deb
      3. apt update
      b. Install Zabbix server, frontend, agent
      apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-agent
      c. Create initial database

      Documentation

      Make sure you have database server up and running.

      Run the following on your database host.

      1. mysql -uroot -p
      2. password
      3. mysql> create database zabbix character set utf8 collate utf8_bin;
      4. mysql> create user zabbix@localhost identified by 'password';
      5. mysql> grant all privileges on zabbix.* to zabbix@localhost;
      6. mysql> set global log_bin_trust_function_creators = 1;
      7. mysql> quit;

      On Zabbix server host import initial schema and data. You will be prompted to enter your newly created password.

      zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix

      Disable log_bin_trust_function_creators option after importing database schema.

      1. mysql -uroot -p
      2. password
      3. mysql> set global log_bin_trust_function_creators = 0;
      4. mysql> quit;
      d. Configure the database for Zabbix server

      Edit file /etc/zabbix/zabbix_server.conf

      DBPassword=password
      e. Configure PHP for Zabbix frontend

      Edit file /etc/zabbix/apache.conf uncomment and set the right timezone for you.

       
      php_value date.timezone Europe/Riga
      f. Start Zabbix server and agent processes

      Start Zabbix server and agent processes and make it start at system boot.

      1. systemctl restart zabbix-server zabbix-agent apache2
      2. systemctl enable zabbix-server zabbix-agent apache2

    4. Start using Zabbix

    如果没有其它应用占用80端口 此步略过

    vim /etc/apache2/ports.conf

    Listen 81

    systemctl restart apache2
     

    vim /etc/php/7.3/apache2/php.ini
     

    1. [Date]
    2. ; Defines the default timezone used by the date functions
    3. ; http://php.net/date.timezone
    4. date.timezone = Asia/Shanghai

     systemctl restart zabbix-server zabbix-agent apache2
     

  • 相关阅读:
    页面添加遮罩层
    【三维世界】高性能图形渲染技术——Shader你又了解多少?
    K8S 1.20 弃用 Docker 评估之 Docker 和 OCI 镜像格式的差别
    2021 CSP J2入门组 CSP-S2提高组 第2轮 视频与题解
    深入篇【C++】C&C++内存管理:new/delete底层原理剖析+思维导图总结
    大一作业HTML网页作业 HTML CSS制作二十四节气网页
    ClickHouse安装完整使用 第二章
    如何在 Vue 3 中使用 Ant Design
    神经网络图像细节分析,神经网络 图像相似度
    C++实现max,min,sum,bind
  • 原文地址:https://blog.csdn.net/qq_24768591/article/details/134026143
  • 最新文章
  • 攻防演习之三天拿下官网站群
    数据安全治理学习——前期安全规划和安全管理体系建设
    企业安全 | 企业内一次钓鱼演练准备过程
    内网渗透测试 | Kerberos协议及其部分攻击手法
    0day的产生 | 不懂代码的"代码审计"
    安装scrcpy-client模块av模块异常,环境问题解决方案
    leetcode hot100【LeetCode 279. 完全平方数】java实现
    OpenWrt下安装Mosquitto
    AnatoMask论文汇总
    【AI日记】24.11.01 LangChain、openai api和github copilot
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1
正则表达式工具 cron表达式工具 密码生成工具

京公网安备 11010502049817号