摘要:
1:首先创建存储过程 2:定义任务 JOB 每天凌晨执行一次。 对应脚本 阅读全文
摘要:
参考:http://www.01happy.com/golang-zip/ 阅读全文
摘要:
1:参考:https://github.com/jinzhu/gorm 2:数据库脚本(pg) 3:posts.go 4:main.go 阅读全文
摘要:
1:sql脚本 2:post.go 3:main.go 阅读全文
摘要:
package main import( "encoding/csv" "fmt" "os" "strconv" ) type Post struct{ Id int Content string Author string } func main(){ csvFile, err := os.Create("posts.csv") if err!= nil{ pani... 阅读全文
摘要:
1:创建域(1)节点一执行 (2)进入wlst控制台 (3)进行配置 2:启动服务(1)启动管理 (2)启动节点1被管服务 阅读全文
摘要:
1:安装mkdir -p /app/mongodb tar zxvf mongodb-linux-x86_64-rhel62-3.4.6.tgz vi .bash_profile PATH=$PATH:$HOME/binPATH=$PATH:/app/mongodb/mongodb-linux-x8 阅读全文
摘要:
find bak/ -mtime +5 -type f | xargs rm -f 阅读全文
摘要:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.... 阅读全文
摘要:
操作系统:CentOS7 安装文件:postgresql-10.0.tar.gz 系统环境:gcc、Python 1:源码安装 2:添加postgres用户,设置目录权限 3:设置环境变量 4:添加启动服务 5:切换到postgres用户,初始化数据库 6:修改postgresql配置 7:启动数据 阅读全文