【开源产品部署系列】一、RuoYi-Radius搭建流程

系列文章目录

【开源产品部署系列】一、RuoYi-Radius搭建流程

文章目录

  • 系列文章目录
    • @[TOC](文章目录)
  • 前言
  • 一、RuoYi-Radius简介
  • 二、部署过程
    • 2.1、Centos8 环境准备
    • 2.2、启动虚拟机
    • 2.3、freeradius 安装
    • 2.4、freeradius 配置
      • 2.4.1、通过软连接方式启动rest模块
      • 2.4.2、修改配置文件启动 rest 模块
      • 2.4.3、修改默认认证方式为rest
      • 2.4.4、修改rest模块配置
      • 2.4.5、修改客户端配置
    • 2.5、安装 mariadb 数据库
      • 2.5.1、安装数据库
      • 2.5.2、修改密码
      • 2.5.3、创建数据库
    • 2.6、ruoyi-radius 安装
      • 2.6.1、下载源码
      • 2.6.2、修改配置文件
      • 2.6.3、创建日志目录
      • 2.6.4、初始化数据库
      • 2.6.5、maven打包
      • 2.6.6、安装jdk
      • 2.6.7、启动
    • 3、调试验证

前言

本系列文章主要讲解开源产品如何在Linux上快速部署,我们的使用 vbox + vagrant 方案部署。

一、RuoYi-Radius简介

RuoYi-Radius 是以 若依管理框架V4.6.0 作为基础框架,实现了 ToughRADIUS大部分功能,支持标准RADIUS协议(RFC2865, RFC2866),提供完整的AAA实现,可以用于酒店WIFI认证,公司局域网认证、商城WIFI认证等。

二、部署过程

2.1、Centos8 环境准备

vagrant init centos/8

修改 Vagrantfile 配置

# -*- mode: ruby -*-
# vi: set ft=ruby :# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|# The most common configuration options are documented and commented below.# For a complete reference, please see the online documentation at# https://docs.vagrantup.com.# Every Vagrant development environment requires a box. You can search for# boxes at https://vagrantcloud.com/search.config.vm.box = "centos/8"# Disable automatic box update checking. If you disable this, then# boxes will only be checked for updates when the user runs# `vagrant box outdated`. This is not recommended.# config.vm.box_check_update = false  config.vm.network "forwarded_port", guest: 3306, host: 3306config.vm.network "forwarded_port", guest: 8090, host: 8090config.vm.network "forwarded_port", guest: 5005 , host: 5005 # Create a forwarded port mapping which allows access to a specific port# within the machine from a port on the host machine. In the example below,# accessing "localhost:8080" will access port 80 on the guest machine.# NOTE: This will enable public access to the opened port# config.vm.network "forwarded_port", guest: 80, host: 8080# Create a forwarded port mapping which allows access to a specific port# within the machine from a port on the host machine and only allow access# via 127.0.0.1 to disable public access# config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1"# Create a private network, which allows host-only access to the machine# using a specific IP.# config.vm.network "private_network", ip: "192.168.33.10"# Create a public network, which generally matched to bridged network.# Bridged networks make the machine appear as another physical device on# your network.# config.vm.network "public_network"# Share an additional folder to the guest VM. The first argument is# the path on the host to the actual folder. The second argument is# the path on the guest to mount the folder. And the optional third# argument is a set of non-required options.config.vm.synced_folder "../vagrant_data", "/data"# Disable the default share of the current code directory. Doing this# provides improved isolation between the vagrant box and your host# by making sure your Vagrantfile isn't accessible to the vagrant box.# If you use this you may want to enable additional shared subfolders as# shown above.# config.vm.synced_folder ".", "/vagrant", disabled: true# Provider-specific configuration so you can fine-tune various# backing providers for Vagrant. These expose provider-specific options.# Example for VirtualBox:#config.vm.provider "virtualbox" do |vb|# Display the VirtualBox GUI when booting the machine# vb.gui = true# Customize the amount of memory on the VM:vb.memory = "2048"vb.name = "ruoyi-radius"end## View the documentation for the provider you are using for more# information on available options.# Enable provisioning with a shell script. Additional provisioners such as# Ansible, Chef, Docker, Puppet and Salt are also available. Please see the# documentation for more information about their specific syntax and use.# config.vm.provision "shell", inline: <<-SHELL#   apt-get update#   apt-get install -y apache2# SHELL
end

2.2、启动虚拟机

vagrant up

此时启动,我们发现yum更新源报错,错误信息如下:

Error: Failed to download metadata for repo 'appstream': Cannot prepare internal mirrorlist: No URLs in mirrorlist

先ssh登陆到 linux 虚拟机

vagrant ssh

解决方案:

sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*sudo yum clean all && yum makecache
sudo yum install -y centos-release
sudo yum update -y
sudo yum install net-tools dejavu-sans-fonts fontconfig  -y

需要注意某些 JDK 版本没有对应的字体,kaptcha 组件在LInux 环境下会报错,我们只需要安装 dejavu-sans-fonts fontconfig 这两个软件包即可。

2.3、freeradius 安装


sudo yum install freeradius freeradius-rest freeradius-utils -y

2.4、freeradius 配置

2.4.1、通过软连接方式启动rest模块

sudo ln -s /etc/raddb/mods-available/rest /etc/raddb/mods-enabled/rest

2.4.2、修改配置文件启动 rest 模块

sudo yum install vim-enhance* -y
sudo vim /etc/raddb/sites-enabled/default

分别在authorize,authenticate,accounting3个模块中插入rest配置

2.4.3、修改默认认证方式为rest

sudo  vim /etc/raddb/users

把freeradius的默认认证方式改为rest(DEFAULT Auth-Type := rest)

2.4.4、修改rest模块配置

sudo vim /etc/raddb/mods-enabled/rest

修改 rest api 地址与入参信息

2.4.5、修改客户端配置

sudo  vim /etc/raddb/clients.conf

修改成自己的ip

su -
cd /etc/raddb/certs/
./bootstrap

2.5、安装 mariadb 数据库

2.5.1、安装数据库

sudo yum install mariadb* -y

2.5.2、修改密码

默认root密码是空密码

mysql -uroot -p
ALTER USER 'root'@'localhost' IDENTIFIED BY '123456';
ALTER USER 'root'@'127.0.0.1' IDENTIFIED BY '123456';
update mysql.user set host = '%' where user = 'root'and host='localhost';
FLUSH PRIVILEGES;

2.5.3、创建数据库

CREATE DATABASE ruoyiradius CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;

2.6、ruoyi-radius 安装

2.6.1、下载源码

git clone https://gitee.com/panweilei/ruoyi-radius.git

2.6.2、修改配置文件

修改radius-application.properties,避免和freeradius端口冲突

org.toughradius.authport=${RADIUSD_AUTH_PORT:2812}
org.toughradius.acctport=${RADIUSD_ACCT_PORT:2813}修改为false
org.toughradius.portal.portalEnabled=${PORTAL_ENABLED:false}

2.6.3、创建日志目录

sudo mkdir -p /opt/server/ruoyiradius/logs

2.6.4、初始化数据库

use ruoyiradius
source /vagrant_data/ruoyi-radius/sql/ruoyiradius-init.sql
source /vagrant_data/ruoyi-radius/sql/ry_20201214.sql

2.6.5、maven打包

D:\ruoyi-radius\bin\package.bat

2.6.6、安装jdk

sudo yum install wget -y
wget https://repo.huaweicloud.com/java/jdk/8u202-b08/jdk-8u202-linux-x64.rpm
sudo rpm -ivh jdk-8u202-linux-x64.rpm

2.6.7、启动

# 调试启动
bash -x ry.sh

3、调试验证

我们做了端口映射,可用远程调试

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/790522.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数据质量决定大模型能力,景联文科技提供高质量大模型数据

随着大模型的深入发展&#xff0c;各类资源要素的配置状态已悄然变化。其中&#xff0c;数据的价值已被提升到一个新高度。 大模型往往拥有庞大的参数和复杂的网络结构&#xff0c;需要大量的数据来学习和优化。数据的质量和数量直接决定了模型的训练效果。若数据不足或质量不佳…

过拟合(Overfitting)

过拟合&#xff08;Overfitting&#xff09;是机器学习中的一个重要概念&#xff0c;它指的是模型在训练数据上表现得过于优秀&#xff0c;以至于在训练集上达到了很高的准确率&#xff0c;但在未见过的数据&#xff08;测试集或实际应用中的数据&#xff09;上表现却大幅下降的…

Vue-Router 的懒加载如何实现

非懒加载&#xff1a; import List from /components/list.vue const router new VueRouter({routes: [{ path: /list, component: List }] }) &#xff08;1&#xff09;方案一(常用)&#xff1a;使用箭头函数import动态加载 const List () > import(/components/list…

SpringBoot如何集成nacos,用于服务发现和配置管理

1.创建srpingBoot的工程 2.pom文件如下&#xff0c;如果出现无法正确读取nacos的配置&#xff0c;很大程度是因为jar包的版本问题导致&#xff0c;当前我使用的是 springBoot的版本&#xff1a; <parent><groupId>org.springframework.boot</groupId><…

MySQL-视图:视图概述、创建、查看、更新、修改、删除

第14章 视图 1. 常见的数据库对象2. 视图概述2.1 为什么使用视图&#xff1f;2.2 视图的理解 3. 创建视图3.1 创建单表视图3.2 创建多表联合视图3.3 基于视图创建视图 4. 查看视图5. 更新视图的数据5.1 一般情况5.2 不可更新的视图 6. 修改、删除视图6.1 修改视图6.2 删除视图 …

详解网络攻击的发生原因、类型及如何防范

网络攻击是访问计算机系统或者大小&#xff0c;修改或窃取数据的未经授权的企图。网络破坏分子可以使用多种攻击媒介&#xff0c;推出包括网络攻击的恶意软件&#xff0c;网络钓鱼&#xff0c;勒索&#xff0c;以及人在这方面的中间人攻击。固有风险和残余风险使这些攻击中的每…

路径优化算法 | 基于A_Star算法实现复杂地形下无人机威胁概率地图最短路径避障三维航迹规划

概述 A* (A-Star) 算法是一种广泛使用的路径搜索和图形遍历算法,用于在给定起点和终点的情况下找到最短路径。对于无人机在复杂地形下的三维航迹规划,A* 算法可以与其他技术结合,例如威胁概率地图(Threat Probability Map),以实现避障和最短路径规划。 以下是一个基于 …

【代码随想录算法训练营第四十三天 | LeetCode1049. 最后一块石头的重量 II 、494. 目标和、474.一和零】

代码随想录算法训练营第四十三天 | LeetCode1049. 最后一块石头的重量 II 、494. 目标和、474.一和零 一、1049. 最后一块石头的重量 II 解题代码C&#xff1a; class Solution { public:int lastStoneWeightII(vector<int>& stones) {vector<int> dp(15001,…

使用阿里云试用Elasticsearch学习:1.1 基础入门——入门实践

阿里云试用一个月&#xff1a;https://help.aliyun.com/search/?kelastic&sceneall&page1 官网试用十五天&#xff1a;https://www.elastic.co/cn/cloud/cloud-trial-overview Elasticsearch中文文档&#xff1a;https://www.elastic.co/guide/cn/elasticsearch/guide…

设计模式学习笔记 - 设计模式与范式 -行为型:4.策略模式(上):如何避免冗长的if-else/switch的分支判断代码

概述 本章我们学习另外一种行为型模式&#xff0c;策略模式。在实际开发中&#xff0c;这个设计模式也比较常用。最场景的应用场景是&#xff0c;利用它来避免冗长的 if-else 或 switch 分支判断。不过&#xff0c;它的作用还不止如此。它也可以像模板模式那样&#xff0c;提供…

强大缓存清理工具 NetShred X for Mac激活版

NetShred X for Mac是一款专为Mac用户设计的强大缓存清理工具&#xff0c;旨在帮助用户轻松管理和优化系统性能。这款软件拥有直观易用的界面&#xff0c;即使是初次使用的用户也能快速上手。 软件下载&#xff1a;NetShred X for Mac激活版下载 NetShred X能够深入扫描Mac系统…

Python语法总结:not(常出现错误)

0、not是什么 在python中not是逻辑判断词&#xff0c;用于布尔型True和False之前 a not Ture # a False b not False # b True1、not的用法 &#xff08;1&#xff09;判断语句 if not a:# 如果a是False&#xff0c;执行的语句&#xff08;2&#xff09;判断元素是否在…

安装nodejs、npm、coturn

安装nodejs sudo apt updatesudo apt install nodejssudo apt install npm安装SSL //更新apt-get下载源节点 sudo apt-get update//查看当前apt-get下载源节点里libssl-dev可下载安装的所有版本&#xff0c;和默认的最合适的版本 sudo apt-cache policy libssl-dev//下载并默认…

Django路由分发的三种方式以及命名空间namespce——附带源码解析

目录 1. 前言 2. include常规路由分发 3. include源码解析 4. 路由分发的第二种写法 5. 路由分发的第三种写法 6. 小结 7. 有关namespace 8. 最后 1. 前言 本篇文章主要是讲解路由分发的三种方式。当然&#xff0c;你可能在想&#xff0c;一般做路由分发只需要一个incl…

尚硅谷2024最新Git企业实战教程 | Git与GitLab的企业实战

这篇博客是尚硅谷2024最新Git企业实战教程&#xff0c;全方位学习git与gitlab的完整笔记。 这不仅仅是一套Git的入门教程&#xff0c;更是全方位的极狐GitLab企业任务流开发实战&#xff01;作为一应俱全的一站式DevOps平台&#xff0c;极狐GitLab的高阶功能全面覆盖&#xff0…

2024-04-03 NO.4 Quest3 手势追踪抓取物体

文章目录 1 手势抓取方式1.1 Hand Grab1.2 Touch Hand Grab1.3 Distance Hand Grab 2 HandGrabExamples 示例场景2.1 Interactor 对象2.2 Interactable 对象2.2.1 父子结构2.2.2 “Hand Grab lnteractable” 脚本2.2.3 “Move Towards Target Provider” 脚本2.2.4 其他 Moveme…

5.5G,只比6G少0.5G

5.5G成为通信行业2024年开年的一大焦点。提到5.5G&#xff0c;多出来的0.5G又是啥&#xff1f;为什么不直接迈向6G时代&#xff1f;今天我们一探究竟&#xff01; “0.5G”&#xff0c;现在与未来的桥梁 2021年&#xff0c;国际标准组织3GPP为通信技术的进一步发展定义了新的里…

Spring vs. Spring Boot深入比较

在Java开发领域&#xff0c;Spring框架是一个广泛使用的轻量级应用开发框架&#xff0c;而Spring Boot则是基于Spring框架的快速应用开发工具。尽管它们都属于Spring生态系统&#xff0c;但它们之间有着明显的区别。本文将深入比较Spring和Spring Boot&#xff0c;并通过案例展…

AI绘图:Stable Diffusion WEB UI 详细操作介绍:进阶-面部修复和调参

结合两篇文章完成了本地部署和基础操作,现在我们来介绍下进阶内容:面部修复,高清修复和调参区。 一:脸部修复 面部修复的适用在画真人、三次元的场景,特别是在画全身的时候 一般在画全身,由于脸部占比的空间比较小,那么绘制出来的效果就会比较差 1.面部修复 SD 支持…

利用sqoop实现sql表数据导入到Hadoop

1.在开发这创建好sql表后&#xff0c;开始执行下面步骤 2.sqoop的安装路径&#xff0c;我这里放在以下位置 3. 进入到option2脚本中&#xff0c;下面是脚本里的内容 下面四点要根据情况随时更改&#xff1a; 1>jdbc:mysql://node00:3306/数据库名 2>sid,sname->前…