-
Notifications
You must be signed in to change notification settings - Fork 273
quickstart_cn
Wang Juntao edited this page Feb 9, 2023
·
2 revisions
- 操作系统:支持跨平台部署(Linux、Windows、MacOS等) — 数据库服务器:PostgreSQL 14+
请自己安装和配置,首先确保您的数据库服务器正在运行。
运行数据库创建脚本并创建专用用户
CREATE USER toughradius WITH PASSWORD 'toughradius';
CREATE DATABASE toughradius WITH OWNER toughradius;
GRANT ALL PRIVILEGES ON DATABASE toughradius TO toughradius;
让我们以v8.0.1为例
从发布页面下载软件发行版
如果你有一些开发技能,你可以编译自己的版本
curl https://github.com/talkincode/toughradius/releases/download/v8.0.1/toughradius_x86-64 -O /tmp/toughradius
Chmod +x /tmp/toughradius && /tmp/toughradius -install
在继续之前,请确保您已经创建了数据库,并且数据库服务器正在运行
修改配置文件/etc/toughradius.yml
使用以下命令启动服务
Systemctl enable toughradius
Systemctl start toughradius
打开浏览器,输入网址:http://your-ip:1816
默认用户名和密码为 admin/toughradius