centOS 7.6 + docker +mysql5.7 1.下载Mysql5.7: docker pull mysql:5.7 2.创建挂载目录 : mkdir -p /home/doufu/docker/mysql/config mkdir -p /home/doufu/docker/mysq ...
分类:
数据库 时间:
2021-06-29 15:22:02
阅读次数:
0
环境为最小化安装初始化环境 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
原文:https://www.jianshu.com/p/534741a16c56 配置 mkdir -p ~/.vim/syntax cd ~/.vim/syntax wget http://www.vim.org/scripts/download_script.php?src_id=14376 ...
分类:
其他好文 时间:
2021-06-28 21:05:53
阅读次数:
0
从存储上讲: - text 是要要进overflow存储。 也是对于text字段,不会和行数据存在一起。但原则上不会全部overflow , 会有768字节和原始的行存储在一块,多于768的行会存在和行相同的Page或是其它Page上。 - varchar 在MySQL内部属于从blob发展出来的一 ...
分类:
数据库 时间:
2021-06-28 21:04:14
阅读次数:
0
有人说要先安装Cython,但是我安装了Cython之后还是报这个错误,然后就换了一种安装思路 先去清华源镜像站https://opentuna.cn/pypi/web/simple/pycocotools/下载pycocotools-2.0.2.tar.gz 然后cd到pycocotools-2. ...
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
1、什么是Velocity Velocity 是一个简单而强大的基于 Java 的模板引擎,可将数据从纯 Java 对象呈现为文本、xml、电子邮件、SQL、Post Script、HTML 等。模板语法和呈现引擎既易于理解,又易于学习和实施. 功能远远超出了 Web 领域(例如 xdoclet、m ...
分类:
其他好文 时间:
2021-06-28 20:55:07
阅读次数:
0
单表查询 sql查询语句的完整语法 select .. from .. where .. group by .. having .. order by .. limit .. where条件的使用 功能:对表中的数据进行筛选和过滤 语法: 1.判断的符号: = > >= < <= != <>不等于 ...
分类:
数据库 时间:
2021-06-28 20:43:33
阅读次数:
0