Files
rlz/后端服务重启完成.txt
2026-01-26 15:02:59 +08:00

86 lines
1.9 KiB
Plaintext
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.
========================================
后端服务重启完成
========================================
重启时间:$(date)
一、重启步骤
-----------
1. ✓ 停止现有服务
2. ✓ 释放端口 8039
3. ✓ 重新启动服务
4. ✓ 验证服务响应
二、服务状态
-----------
✓ 后端服务已重新启动
✓ 端口 8039 正在监听PID: 9526
✓ HTTP 接口响应正常状态码200
三、代码更改已应用
-----------------
✓ 测试账户验证码配置已生效
- 18792702169 → 验证码 6666
- 18133922183 → 验证码 6666
- 其他手机号 → 随机验证码
✓ 微信登录代码修复已生效
- 添加了 user.setNickName(phoneNumber)
- 修复了 nick_name 字段缺失问题
✓ sys_hospital 表已创建
- 医院信息表已可用
四、测试账户信息
--------------
账户1
手机号18792702169
验证码6666
用户ID101
账户2
手机号18133922183
验证码6666
用户ID100
五、服务信息
-----------
- 服务地址http://localhost:8039
- 公网地址http://101.43.95.130:8039
- 日志文件:/tmp/ruoyi_startup.log
- 进程ID9526
六、下一步测试
------------
1. 测试验证码登录
- 使用手机号 18792702169 或 18133922183
- 验证码6666
- 应该可以正常登录
2. 测试微信登录
- 在小程序中测试微信登录
- 应该不再出现字段缺失错误
3. 测试医院列表接口
- 应该不再出现表不存在的错误
七、常用命令
-----------
查看服务状态:
ps aux | grep spring-boot:run
查看端口监听:
netstat -tlnp | grep 8039
查看日志:
tail -f /tmp/ruoyi_startup.log
停止服务:
pkill -f "spring-boot:run"
重启服务:
cd /home/renjianbo/saars/rlz/rlz/ruoyi-admin
nohup mvn spring-boot:run > /tmp/ruoyi_startup.log 2>&1 &
========================================