从错误即可知道是时区的错误,因此只要将时区设置为你当前系统时区即可, 因此使用root用户登录mysql,按照如下图所示操作即可。 show variables like '%time_zone%'; set global time_zone="+8:00"; 系统为北京时区,因此在系统中设置后,再 ...
分类:
其他好文 时间:
2021-03-08 13:09:54
阅读次数:
0
修改host文件 sudo vim /etc/host 添加以下内容 # Github?151.101.185.194 github.global.ssl.fastly.net140.82.114.3 github.com 151.101.112.133 assets-cdn.github.com ...
分类:
系统相关 时间:
2021-03-08 13:06:17
阅读次数:
0
Object.defineProperty 劫持数据 只是对对象的属性进行劫持 无法监听新增属性和删除属性 需要使用 vue.set, vue.delete 深层对象的劫持需要一次性递归 var obj = { a: 1, o: { b: 2, o1: {} } } 无法监听原生数组,需要特殊处理, ...
分类:
其他好文 时间:
2021-03-05 12:56:07
阅读次数:
0
Oracle ebs 常用标准表call fnd_global.APPS_INITIALIZE(1318,50583,401) select fnd_profile.VALUE('ORG_ID') FROM DUAL select * from hr_operating_units hou wher ...
分类:
数据库 时间:
2021-03-03 12:37:00
阅读次数:
0
总结: main函数执行之前,主要就是初始化系统相关资源: 1.设置栈指针 2.初始化static静态和global全局变量,即data段的内容 3.将未初始化部分的赋初值:数值型short,int,long等为0,bool为FALSE,指针为NULL,等等,即.bss段的内容 4.运行全局构造器, ...
分类:
其他好文 时间:
2021-03-02 12:37:31
阅读次数:
0
查看当前mysql隔离级别 mysql> show variables like 'tx_isolation' 设置隔离级别 mysql> set global transaction isolation level read committed; global 和session 这是两个作用域,g ...
分类:
数据库 时间:
2021-03-02 12:12:13
阅读次数:
0
经典开场 // Layui ;! function (win) { var Lay = function () { this.v = '2.5.5'; }; win.layui = new Lay(); }(window); // Jquery (function (global, factory) ...
分类:
其他好文 时间:
2021-03-02 11:54:07
阅读次数:
0
git记录 初始化: git version //查看git版本 git init //初始化仓库 cd 路径 //改变路径,windows命令 touch 文件名 //创建文件,windows命令 配置用户: git config --global user.name '用户名' git conf ...
分类:
其他好文 时间:
2021-02-27 13:31:46
阅读次数:
0
step1: 打开网站:https://www.ipaddress.com/,分别搜索github.com,github.global.ssl.fastly.net,codeload.github.com,获取对应的ip地址 step2: sudo vi /etc/hosts i进入编辑模式,esc ...
分类:
系统相关 时间:
2021-02-27 13:05:50
阅读次数:
0
日志进程rsyslog httpd/nginx/mysql: 各类应用程序,可以以自己的方式记录日志 Rsyslog 是处理系统相关日志的进程 处理日志的进程 rsyslog rsyslog可以处理绝大部分日志记录,比如系统操作有关信息,如登录信息,程序的启动关闭信息 [root@CatdeXin- ...
分类:
其他好文 时间:
2021-02-27 13:03:19
阅读次数:
0