摘要: 初始化和启动数据库 $voltdb init $voltdb start 如果初始化成功则服务器返回:Server completed initialization. 和VoltDB交互式命令行工具为sqlcmd 连接方式为 $sqlcmd 连接上后会显示类似下图 现在就可以进行输入sql查询或者d 阅读全文
posted @ 2019-10-18 10:59 biubiubiuo 阅读(956) 评论(0) 推荐(0) 编辑
摘要: 在eclipse上WildFly部署项目后,启动一直报错java.lang.NoClassDefFoundError,功夫不负有心人,终于解决。 解决方案 查了网上很多资料,有说环境变量配置不对的,有说改wildfly-9.0.1.Final\standalone\deployments路径下war 阅读全文
posted @ 2019-09-26 18:55 biubiubiuo 阅读(438) 评论(0) 推荐(0) 编辑
摘要: df 列出文件系统整体磁盘使用量 df -h 容量以易读的方式显示 du 评估文件系统的磁盘使用量 du -a 列出文件列表 gzip 文件名 压缩文件(生成压缩文件,但源文件会被删除) 例: gzip abc.log gzip -c 文件名 > 文件名.gz (生成压缩文件并保留源文件) 例: g 阅读全文
posted @ 2019-08-23 11:38 biubiubiuo 阅读(161) 评论(0) 推荐(0) 编辑
摘要: mkdir test 创建test目录 mkdir -p test1/test2/test3 添加-p参数可以创建多层目录 mkdir -m 770 test2 添加-m参数可以直接给该目录赋权限 rmdir test 删除test目录 rmdir -p test 连通test上层空的目录一起删除 阅读全文
posted @ 2019-08-20 14:05 biubiubiuo 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 一般系统账号和身份用户都记录在/etc/passwd 文件,个人密码在/etc/shadow 文件,所有组名记录在/etc/group文件,不要随便删除! 1、文件权限: rwx rwx rwx 文件所有者权限 | 文件所属用户组权限 | 其他人(非用户组)权限 r可读 w可写 x可执行 2、 -r 阅读全文
posted @ 2019-08-16 09:29 biubiubiuo 阅读(155) 评论(0) 推荐(0) 编辑
摘要: List<String> lists = new ArrayList<String>();list.add("123"); 阅读全文
posted @ 2019-03-27 10:22 biubiubiuo 阅读(1135) 评论(0) 推荐(0) 编辑
摘要: if((accessUser==null||"".equals(accessUser))||(accessPassword==null||accessPassword.equals(""))||(!((accessUser.equals(usercheck))&&(accessPassword.eq 阅读全文
posted @ 2019-02-26 15:19 biubiubiuo 阅读(661) 评论(0) 推荐(0) 编辑
摘要: public static String fmtStringEmpty(Object obj) { String fmtStr = ""; if (obj == null) { return fmtStr; } else { if (obj instanceof Date) { fmtStr = S 阅读全文
posted @ 2019-01-21 15:47 biubiubiuo 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 参考网址https://blog.csdn.net/did_itmyway/article/details/62099930 阅读全文
posted @ 2018-08-22 20:32 biubiubiuo 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 前端 java controller dao层 阅读全文
posted @ 2018-08-13 15:51 biubiubiuo 阅读(4192) 评论(1) 推荐(0) 编辑