首页
文章分类
Windows系统
Android
Mac&iOS
Linux系统
Debian
ProxmoxVE
Ubuntu
CentOS
编程语言
Go
Js/Ts
Java
C#
C/C++
软件使用
Hexo博客
Nginx
Docker
Office
MySQL
MongoDB
随笔
关于
过客
编程有风险,入坑需谨慎!
累计撰写
382
篇文章
累计收到
0
条评论
累计收获
436
次访问
导航
首页
文章分类
Windows系统
Android
Mac&iOS
Linux系统
Debian
ProxmoxVE
Ubuntu
CentOS
编程语言
Go
Js/Ts
Java
C#
C/C++
软件使用
Hexo博客
Nginx
Docker
Office
MySQL
MongoDB
随笔
关于
目录
分类
软件使用
WPS 表格时间戳转时间显示
2019-10-28 22:42
1
0
0
24.1℃
Office
有时候我们从数据库导出来的时间为时间戳格式,可以用简单的公式用WPS(或Office)直接显示为日期格式 1. 打开表格,选择一个空表格 2. 右击选择设置单元格格式为日期格式 3. 输入公式 =(B2+8*3600)/86400+70*365+19 这里的B2为时间戳表格的位置,这里是秒为单位,
MongoDB备份、恢复
2019-10-25 00:21
1
0
0
24.1℃
MongoDB
备份数据库 mongodump -h 地址 --port 端口 -u 用户名 -p 密码 -d 数据库 -o 导出文件目录 --authenticationDatabase admim 授权认证数据库 如果是本地服务器,默认27017端口时,可以战斗力-h 和-d 参数 如果要导出整个库时,可以不
EXCEL中计算大于且小于特定值的个数
2019-10-24 20:55
1
0
0
24.1℃
Office
比如有表 我们要统计A列中,大于5且小于10的值的个数 选择一个空白表格中,输入以下公式 =COUNTIFS(L24:L33,">=14",L24:L33,"<=17")
Linux安装Docker
2019-10-24 16:30
3
0
0
24.3℃
Docker
CentOS7 1. 切换源 # 设置为阿里云的源 sudo yum install -y yum-utils sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.
Ubuntu从apt-get安装MongoDB.4.0
2019-10-21 17:45
1
0
0
24.1℃
MongoDB
Ubuntu
一键安装脚本 #!/bin/bash sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 68818C72E52529D4 sudo echo "deb http://repo.mongodb.org/apt/ubun
CentOS7中离线安装MongoDB
2019-10-21 17:45
1
0
0
24.1℃
MongoDB
CentOS
一键安装脚本 #!/bin/bash # 下载mongdb # wget https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-4.0.13.tgz ## 解压 tar zxf mongodb-linux-x86_64-4.0.13.tgz
MongoDB 忘记密码
2019-10-19 00:45
1
0
0
24.1℃
MongoDB
先查看MongoDB的启动模式 ps -ef | grep mongod 命令行参数启动 如果查看到的mongod后面带-auth参数启动的 如:root 9564 1 0 06:28 ? 00:00:15 mongod -auth --bind_ip 127.0.0.1 --port 27017
Nginx转发阿里云内网Redis
2019-10-17 22:59
1
0
0
24.1℃
Nginx
修改Nginx配置文件,加入流转发 #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log inf
上一页
下一页
1
…
6
7
8
9
10
11
12
弹