首页
关于
Search
1
在投射和录制时显示敏感信息写给TeamViewer,anydesk,向日葵
8,644 阅读
2
sublime 3155-3175 LICENSE
7,964 阅读
3
mysql存储过程&时间累加插入
7,781 阅读
4
永远不要相信浮点数结果精确到了最后一位,也永远不要比较两个浮点数是否相等。
4,496 阅读
5
mysql-workbench中duration fetch的含义
4,485 阅读
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
登录
Search
标签搜索
mysql
curl
grep
journalctl
rename
You can't specify target table
only_full_group_by
Sub-process
警示
dropbox
mtr
curl抓取重定向
floor
intval
ceil
round
pixmap
adwaita
date.utc
gmmktime
五好的Book
累计撰写
194
篇文章
累计收到
31
条评论
首页
栏目
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
页面
关于
搜索到
194
篇与
的结果
2018-11-16
清理binlog日志记录
mysql 长期运行下会产生很多日志记录,尤其是binlogroot@www:/var/lib/mysql# du -h * 4.0K auto.cnf 1.1G binlog.000016 1.1G binlog.000017 1.1G binlog.000018 1.1G binlog.000019 1.1G binlog.000020 1.1G binlog.000021 1.1G binlog.000022 1.1G binlog.000023 1.1G binlog.000024 1.1G binlog.000025 1.1G binlog.000026 1.1G binlog.000027 754M binlog.000028 4.0K binlog.000029 416M binlog.000030 4.0K binlog.index 以下方法来控制binlog的大小1.限制 binlog 日志文件存在时间 设置参数 expire_logs_days = 3; 只保留 3 天的日志文件 2.在mysql的shell里执行 reset master; 清空所有 binlog 文件 3.对于没有做主从的情况,直接在配置文件中注释log-bin=mysql-bin这个配置项 4.有主从配置的情况可以这样来操作 show slave status\G # 你首先要来 slave 上查看从库读 binlog 到了哪里 Master_Log_File: mysql-bin.000007 # 我们可以看到是 mysql-bin.000007 mysql> purge master logs to 'mysql-bin.000007'; # 我们可以在 master 中执行这条指令 , 将 binlog 文件删除至 mysql-bin.000007 前 mysql> purge master logs before '2018-11-16 00:00:00'; # 将 binlog 文件删除至此日期前
2018年11月16日
939 阅读
0 评论
0 点赞
2018-11-10
终端关闭后程序依然运行
nohup cmd & nohup: ignoring input and appending output to 'nohup.out'运行上面的命令后 会提示 当前目录下有一个 nohup.out的文件,保存追加输出的信息到该文件nohup 命令的解释用法:nohup 命令 [参数]... 或:nohup 选项 忽略挂起信号运行指定的命令。 --help 显示此帮助信息并退出 --version 显示版本信息并退出 If standard input is a terminal, redirect it from an unreadable file. If standard output is a terminal, append output to 'nohup.out' if possible, '$HOME/nohup.out' otherwise. If standard error is a terminal, redirect it to standard output. To save output to FILE, use 'nohup COMMAND > FILE'.
2018年11月10日
769 阅读
0 评论
0 点赞
2018-11-06
开启安卓手机网络调试功能
su setprop service.adb.tcp.port 5555 start adbd
2018年11月06日
890 阅读
0 评论
0 点赞
2018-11-06
more than one device/emulator
今天在运行 adb shell 的时候 报了这个错误"more than one device/emulator",解决之道:adb devices List of devices attached 192.168.0.102:5555 device emulator-5554 offline adb shell 时 指定 对应的 devices如adb -s192.168.0.102:5555 shell 即可
2018年11月06日
1,049 阅读
0 评论
0 点赞
2018-10-30
\n和char(10)换行符号
\n是什么 他是一个 换行的转意字符串 char(10) char是一个函数 10是传递给函数的参数值 其实char 返回的是 (其他类型计算机文件中的代码转换为字符)将ASCII码转换成为字符串那么其实 char(10)也就是\n 比如在sql 中这2个用法查询到的结果是一样的SELECT replace(txt,'\n','<br>') FROM bktxt where id=2; SELECT replace(txt,char(10),'<br>') FROM bktxt where id=2; 都是将 txt字段里的 换行符替换成 标签
2018年10月30日
767 阅读
0 评论
0 点赞
1
...
20
21
22
...
39