修改 django 时区 # 项目 settings.py 文件中修改以下内容 TIME_ZONE = 'UTC' # 修改成 上海 时区 TIME_ZONE = 'Asia/Shanghai' 查看该 django 版本支持的时区 # 在对应django 的python环境中 /Users/liu ...
分类:
其他好文 时间:
2021-07-19 16:53:52
阅读次数:
0
CentOS7查看开放端口命令及开放端口号 查看已开放的端口 firewall-cmd --list-ports 开放端口(开放后需要要重启防火墙才生效) firewall-cmd --zone=public --add-port=3338/tcp --permanent 重启防火墙 firewal ...
分类:
其他好文 时间:
2021-07-16 17:42:16
阅读次数:
0
1. 远程配置文件 项目结构 依赖导入 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </depende ...
分类:
其他好文 时间:
2021-07-05 17:09:01
阅读次数:
0
原因: mysql数据库的时区设置错误 解决办法: ①.Win+R 输入cmd 打开控制台 ②.打开数据库, 输入: mysql -uroot -p ③.查看数据库是否设置时区 show variables like '%time_zone%'; mysql> show variables like ...
分类:
数据库 时间:
2021-06-28 18:57:02
阅读次数:
0
1.导入依赖 <!--数据库驱动--><dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId></dependency><!--lombok--><dependency> <groupId> ...
分类:
其他好文 时间:
2021-06-25 16:40:05
阅读次数:
0
首先检查Nginx是否启动成功 [root@web1 extra]# ps aux|grep nginx (一切正常)root 3269 0.0 0.1 46764 1464 ? Ss 09:34 0:00 nginx: master process nginx -c /application/ng ...
分类:
其他好文 时间:
2021-06-20 18:09:23
阅读次数:
0
1.选择依赖 SpringWeb,JDBC API, MybatisFramework, MysqlDriver 2.application.yml 将 application.properties改为application.yml(使用更简洁), application.yml文件内容如下: se ...
分类:
编程语言 时间:
2021-06-17 17:15:52
阅读次数:
0
案例四:封装共有操作 封装一个数据库的会话的类 点击查看详细代码 import java.sql.*; public class ConnectionUtil { /** * 获取连接对象的方法,返回一个Connection * 方法体中是共有操作:加载驱动,建立连接 */ public stati ...
分类:
数据库 时间:
2021-06-17 17:10:30
阅读次数:
0
存储区域网络(Storage Area Network,简称SAN)采用网状通道(Fibre Channel ,简称FC,区别与Fiber Channel光纤通道)技术,通过FC交换机连接存储阵列和服务器主机,建立专用于数据存储的区域网络。以下介绍WWN,WWNN,WWPN的意义与区别:WWN: w ...
分类:
其他好文 时间:
2021-06-15 18:15:20
阅读次数:
0
There are several commands to determine the WWN of a Fibre Channel (FC) HBA and their status (online/offline). The post discusses few of the most comm ...
分类:
系统相关 时间:
2021-06-11 18:48:26
阅读次数:
0