-
Notifications
You must be signed in to change notification settings - Fork 274
quickstart
Wang Juntao edited this page Feb 9, 2023
·
11 revisions
- Operating System:Support cross-platform deployment (Linux, Windows, MacOS, etc.)
- Database server: PostgreSQL 14+
Please do the installation and configuration yourself, first make sure your database server is running.
Running database creation scripts and creating dedicated users
CREATE USER toughradius WITH PASSWORD 'toughradius';
CREATE DATABASE toughradius WITH OWNER toughradius;
GRANT ALL PRIVILEGES ON DATABASE toughradius TO toughradius;
Let's take v8.0.1 as an example
Download the software distribution from Releases Page
If you have some development skills, you can compile your own version
curl https://github.com/talkincode/toughradius/releases/download/v8.0.1/toughradius_x86-64 -O /tmp/toughradius
chmod +x /tmp/toughradius && /tmp/toughradius -install
Before proceeding, make sure that you have created the database and that the database server is running
Modifying configuration file /etc/toughradius.yml
Start the service with the following commands
systemctl enable toughradius
systemctl start toughradius
Open the browser and enter the URL: http://your-ip:1816
The default username and password are admin/toughradius