POSTGRESQL 学习

Posted on 2020-10-03 in how-to • Tagged with postgresql, database

安装配置 PostgreSQL

安装 postgresql 并登录至 postgres 用户环境

$ sudo apt install postgresql
$ sudo -i -u postgres
$ psql

创建角色以及数据库

>> CREATE ROLE demo_role LOGIN PASSWORD 'demo_password';
>> CREATE DATABASE demo_db WITH owner = demo_role;

默认安 …


Continue reading

基于 wagtail 创建网站应用

Posted on 2020-10-03 in django • Tagged with wagtail, django, postgresql, git

参考链接

系统运行环境配置

设置开发与运行环境,默认环境为全新安装,仅安装 SSH 和 基 …


Continue reading

Install FreeRadius On Debian 10

Posted on 2020-11-21 in how-to • Tagged with FreeRadius, PostgreSQL, MAC Limit

Getting setup freeradius with postgreSQL and support client's device limit


Continue reading