Files
SOP/sop-admin/sop-admin-server/readme.md
tanghc 0fea955db9 4.0
2020-07-28 18:21:01 +08:00

23 lines
467 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# sop admin服务端
# 使用步骤
- 打开`application-dev.yml`,修改数据库`username/password`指定nacos地址
- 运行`SopAdminServerApplication.java`
- 访问:`http://localhost:8082`
登录账号admin/123456
后台用户表admin_user_info
- 密码保存规则:`md5(username + md5(password) + username)`
```text
username: admin
password: 123456
md5("admin" + md5(123456) + "admin")
```
详见com.gitee.sop.adminserver.AccountTest