Advertisement

centos7 安装 cacti0.8.8 及问题处理

阅读量:

一、环境部署

  1. 停用防火墙服务及SELinux功能
复制代码
    # systemctl stop firewalld
    # systemctl disable firewalld
    # sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config
    # setenforce 0
    
    
      
      
      
      
    
  1. 构建LAMP运行环境
复制代码
    # yum -y install httpd mariadb mariadb-server mariadb-devel php php-mysql php-gd php-pear gd gd-devel wget
    # systemctl start httpd && systemctl enable httpd
    # systemctl start mariadb && systemctl enable mariadb
    
    
      
      
      
    

3.设置阿里云yum源

复制代码
    # curl -o /etc/yum.repos.d/CentOS-7.repo  http://mirror

全部评论 (0)

还没有任何评论哟~