第一节:Centos7安装freeradius

更新日期:2018年4月23日

本节主要内容:

在Centos7.4 上安装以下软件

(1)freeradius:linux下开源radius,用于后期对VPN账号的管理

(2)php环境:用于后期daloradius必须的环境

(3)mariadb(mysql数据库):用于后期freeradius、daloradius必须的环境

1、关闭selinux

注意:如果不关闭,将在daloradius中无法查看日志信息

vi /etc/selinux/config
将
SELINUX=enforcing
修改为SELINUX=disabled

2、安装 Deelopment tools

yum groupinstall "Development tools" -y

3、安装数据库、http、php等

yum install wget telnet net-tools httpd mariadb-server php php-mysql php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel -y

4、安装 freeradius

yum install freeradius freeradius-mysql freeradius-utils -y

5、启动 mariadb、httpd、关闭防火墙

systemctl restart mariadb
systemctl restart httpd
systemctl stop firewalld
systemctl disable firewalld