準備工作 centos7.8 虛擬機器 shell軟體ssh遠端登入除錯
官網找到需要的yum源
zabbix 的yum源
阿里yum源
元件一.1.1關閉防火牆
firewall-cmd --state #檢視預設防火牆狀態,關閉後顯示not running,開啟後顯示running
systemctl stop firewalld.service #臨時關閉firewall
systemctl disable firewalld.service #禁止firewall開機啟動
1.2關閉selinux
vi /etc/selinux/config #將selinux=enforcing改為selinux=disabled 設定後需要重啟才能生效
getenforce #檢測selinux是否關閉,disabled 為關閉
二.部署5.0zabbix伺服器
2.1 安裝zabbix的yum源
rpm -uvh
ls /etc/yum.repos.d/ #檢視檔案已有zabbix.repo
儲存退出。
yum list | grep zabbix #檢視安裝包是否就位
2.2安裝zabbix服務,**
yum -y install zabbix-server-mysql zabbix-agent
安裝centos擴充套件軟體庫
yum -y install centos-release-scl
2.3安裝資料庫
#yum -y install mariadb-server mariadb
#systemctl start mariadb #啟動資料庫
#systemctl enable mariadb #設定資料庫開機啟動
#mysql_secure_installation #資料庫初始化
安裝資料庫初始化檔案和nginx
#yum install zabbix-web-mysql-scl zabbix-apache-conf-scl
建立資料庫,使用者並未給資料庫使用者授予許可權。
#mysql -uroot -p
enter password:
mariadb [(none)]> create database zabbix character set utf8 collate utf8_bin;
mariadb [(none)]> create user zabbix@localhost identified by 『密碼』;
mariadb [(none)]> grant all privileges on zabbix.* to zabbix@localhost;
mariadb [(none)]> quit;
初始化資料庫
zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
配置zabbix服務的資料庫
vi /etc/zabbix/zabbix_server.conf #將檔案內容做如下修改dbpassword=password
2.4配置php環境
修改配置檔案vi /etc/opt/rh/rh-php72/php-fpm.d/zabbix.conf,將php時區修改為asia/shanghai
php_value[date.timezone] = asia/shanghai
啟動zabbix和agent服務
預設賬號密碼admin zabbix
切換中文介面
完成安裝
在CentOS7中安裝TensorFlow
之後,請到 學習安裝centos7 進入centos,開啟終端,切換為管理員模式。輸入 cd 並按下回車鍵,以切換到家目錄。輸入 yum y install epel release 並按下回車鍵,等待安裝完成。輸入 yum install python pip 並按下回車鍵,等待安裝完成。輸入 p...
在Centos 7中安裝 Mysql
一 安裝mysql a 檢視centos發行版本cat etc redhat release b 根據linux發行版本 centos fedora都屬於紅帽系 從mysql官方 獲取yumrepository。輸入命令 wget i c 安裝完 mysql 的yum repository 每次執行...
在centos7中安裝mysql
切換root 去mysql官網 下一步安裝mysql yum install mysql community server y 修改關閉密碼驗證 alter user root localhost identified by 修改 etc my.cnf 在最後新增 開啟 systemctl star...