环境为最小化安装初始化环境 yum install -y vim net-tools wget tree lrzsz关闭防火墙systemctl stop firewalld.servicesystemctl disable firewalld.service关闭selinuxsed -i 's/S ...
分类:
数据库 时间:
2021-06-29 15:18:17
阅读次数:
0
url: jdbc:mysql://${DB_SERVER:localhost}:3306/utai?useUnicode=true&characterEncoding=utf-8&serverTimezone=UTC&allowMultiQueries=true使用分号分割的批量sql,要添加配置 ...
分类:
数据库 时间:
2021-06-28 21:19:41
阅读次数:
0
一、添加数据库用户禅道数据库管理用的是adminer,但是为了安全,访问adminer的时候需要身份验证,需要在服务器运行/opt/zbox/auth/adduser.sh来添加用户首先确保服务是启动的(mysql和apache启动状态),先 cd /opt/zbox/auth/,然后执行 ./ad ...
分类:
数据库 时间:
2021-06-28 21:12:17
阅读次数:
0
从存储上讲: - text 是要要进overflow存储。 也是对于text字段,不会和行数据存在一起。但原则上不会全部overflow , 会有768字节和原始的行存储在一块,多于768的行会存在和行相同的Page或是其它Page上。 - varchar 在MySQL内部属于从blob发展出来的一 ...
分类:
数据库 时间:
2021-06-28 21:04:14
阅读次数:
0
在react中,想要改变state内部状态,需要使用setState进行修改,如果只是修改state的部分属性,则不会影响其他的属性,这个只是合并并不是覆盖。 this.setState(),该方法接收两种参数:对象或函数(理解对象形式是函数形式的简写)。 对象:this.setState({key ...
Warning: World-writable config file '/etc/mysql/my.cnf' is ignoredERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mys ...
分类:
数据库 时间:
2021-06-28 20:57:43
阅读次数:
0
jQuery事件: 1、事件注册 单个事件注册 element.事件(function() {}) 例:$(“div”).click(function(){ 事件处理程序 }) 2、事件处理 事件处理on()绑定事件 on() 方法在匹配元素上绑定一个或多个事件的事件处理函数 element.on( ...
分类:
Web程序 时间:
2021-06-28 20:47:55
阅读次数:
0
单表查询 sql查询语句的完整语法 select .. from .. where .. group by .. having .. order by .. limit .. where条件的使用 功能:对表中的数据进行筛选和过滤 语法: 1.判断的符号: = > >= < <= != <>不等于 ...
分类:
数据库 时间:
2021-06-28 20:43:33
阅读次数:
0
点击选项卡时,点击事件如下: wx.navigateTo({ url: '../device/device' }) 微信小程序报错:navigateTo:fail can not navigateTo a tabbar page,解决方法如下: wx.switchTab({ url: '../dev ...
分类:
微信 时间:
2021-06-28 20:38:23
阅读次数:
0
公司项目C#操作mysql数据库时出现几个问题的解决方案作下记录 1、The MySQL server is running with the --secure-file-priv option so it cannot execute this statement” 解决方法:修改my.ini 配 ...
分类:
数据库 时间:
2021-06-28 20:37:38
阅读次数:
0