晨风

-------------------- 业精于勤,荒于嬉;行成于思,毁于随

导航

上一页 1 2 3 4 5 6 7 8 9 ··· 28 下一页

2021年5月20日

摘要: #数据库中所有表的信息 SELECT * FROM information_schema.TABLES WHERE TABLE_SCHEMA = '数据库名' #数据库中每个表的数据量 SELECT table_name,table_rows FROM information_schema.tabl 阅读全文

posted @ 2021-05-20 11:17 shenyixin 阅读(4467) 评论(0) 推荐(0) 编辑

2021年4月29日

摘要: Linux crontab是用来定期执行程序的命令。 当安装完成操作系统之后,默认便会启动此任务调度命令。 crond 命令每分锺会定期检查是否有要执行的工作,如果有要执行的工作便会自动执行该工作。 注意:新创建的 cron 任务,不会马上执行,至少要过 2 分钟后才可以,当然你可以重启 cron 阅读全文

posted @ 2021-04-29 17:11 shenyixin 阅读(292) 评论(0) 推荐(0) 编辑

2021年4月28日

摘要: 找到会话文件存放地址,我的地址如下: C:\Users\用户名\AppData\Roaming\SQLyog 文件列表存在一个connrestore_backup.ysav文件和一个connrestore.db文件,connrestore.db文件是操作SQLyog的数据库记录(可用SQLlite工 阅读全文

posted @ 2021-04-28 14:56 shenyixin 阅读(783) 评论(0) 推荐(0) 编辑

2021年4月20日

摘要: location / { root html; index index.html index.htm; if ( $request_uri ~ "^\/xxx") { proxy_pass http://www.baidu.com; } } 阅读全文

posted @ 2021-04-20 11:44 shenyixin 阅读(1052) 评论(0) 推荐(0) 编辑

2021年3月4日

摘要: #!/bin/bash #保存备份个数,备份31天数据 number=31 #备份保存路径 backup_dir=/data/mysqlbackup #日期 dd=`date +%Y-%m-%d-%H-%M-%S` #备份工具 tool=mysqldump #服务器地址 db=10.10.18.20 阅读全文

posted @ 2021-03-04 15:10 shenyixin 阅读(154) 评论(0) 推荐(0) 编辑

摘要: 引言: 注:本人一直都是用的git bash窗口完成日常的开发工作。 事情是这样的,切换分支的时候命令打错了,git checkout 后面没有跟分支名,结果git status,很多delete的文件,直接冒冷汗,git add ,commit 之后发现本地与远程确实是删除了很多文件,我本地没有修 阅读全文

posted @ 2021-03-04 13:49 shenyixin 阅读(2371) 评论(0) 推荐(0) 编辑

摘要: $ git log -2 commit d9d7bd2dba3adc55a54f5b72a4acfe2f3eecb853 (HEAD, origin/dev) Merge: c8071ea f71391f Author: chensheng Date: Thu Jan 31 14:38:26 201 阅读全文

posted @ 2021-03-04 13:46 shenyixin 阅读(192) 评论(0) 推荐(0) 编辑

2021年2月19日

摘要: 1.安装lftp yum -y install lftp 2.shell脚本 --delete: 如果远程目录下已经没有某个文件,而目标服务器有,则删除这个文件。 --only-newer: 只下载新的文件。 如下:mirror --delete --only-newer --verbose /da 阅读全文

posted @ 2021-02-19 14:46 shenyixin 阅读(934) 评论(0) 推荐(0) 编辑

摘要: docker版本:18.09.0 在Centos7.2上安装(为离线安装):安装成功后,在创建容器时,报错: docker: Error response from daemon: OCI runtime create failed: unable to retrieve OCI runtime e 阅读全文

posted @ 2021-02-19 09:47 shenyixin 阅读(7229) 评论(0) 推荐(0) 编辑

2021年2月3日

摘要: 1) 文件内全部替换: :%s#abc#123#g (如文件内有#,可用/替换,:%s/abc/123/g) --注:把abc替换成123 (或者: %s/str1/str2/g 用str2替换文件中所有的str1) 2) 文件内局部替换: :20,30s#abc#123(如文件内有#,可用/替换, 阅读全文

posted @ 2021-02-03 14:59 shenyixin 阅读(618) 评论(0) 推荐(1) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 28 下一页