Manual upgrade to Oracle 19c (CDB/PDB) spa Oracle 19c, Oracle Database 20/12/2019 8 Minutes manually to 19c …. Actually it is very cool to do everythi ...
分类:
数据库 时间:
2020-07-30 10:45:05
阅读次数:
83
1. 简介 本文主要介绍git的使用技巧,git的安装过程可参考网上其他教程。 2. 提交代码命令 提交代码的正常流程如下: git status //查看修改文件 git add [fileName] //添加指定代码,可以连续添加多个,用空格隔开 git commit -m "针对修改或新增的评 ...
分类:
其他好文 时间:
2020-07-30 01:22:15
阅读次数:
76
登录类,发现很多如下代码: hql = " from SafetyOperationAdvise where (checker='" + checker + "' or checker in ("+hqlAssigner.toString()+"63)"+") ) and status in ('1 ...
分类:
其他好文 时间:
2020-07-29 10:21:53
阅读次数:
106
CentOS7默认的防火墙不是iptables,而是firewalle. 安装iptable iptable-service #先检查是否安装了iptables service iptables status #安装iptables yum install -y iptables #升级iptabl ...
分类:
其他好文 时间:
2020-07-28 22:43:09
阅读次数:
65
etcd 执行删除命令报错: unexpected status code 401 原来是api版本不对默认是V2,,沃日~~~~~~~~~~~~~~~~~~~ export ETCDCTL_API=3 ...
分类:
其他好文 时间:
2020-07-28 22:18:00
阅读次数:
70
import json str = '{"status":"500","data":null,"time":1595921796,"info":"测试测试"}' # 字符串转换为JSON格式 str_json = json.loads(str) # 格式化输出JSON # sort_keys:是否按 ...
分类:
编程语言 时间:
2020-07-28 16:53:32
阅读次数:
74
3.1 查看SQL执行频率 MySQL 客户端连接成功后,通过 show [session|global] status 命令可以提供服务器状态信息。show [session|global] status 可以根据需要加上参数“session”或者“global”来显示 session 级(当前连 ...
分类:
数据库 时间:
2020-07-28 14:42:06
阅读次数:
109
安装12-0-0版本并进行汉化后,开始创建其他组用户。使用其他用户登陆页面时候出现500错误 首先查看gitlab运行状态,发现并无异常 [root@gitlab ~]# gitlab-ctl status 查网上资料得知,GitLab发现报500错误,大意为DB数据关系错误,需要升级数据库关系。 ...
分类:
其他好文 时间:
2020-07-28 14:41:15
阅读次数:
186
git 常用命令 git add * 预提交 git commit -m '描述' 提交 git init 创建仓库 git status 查看当前是否有文件待提交 gik 以图形界面显示仓库及记录 git commit --amend 覆盖上一次提交 ...
分类:
其他好文 时间:
2020-07-28 13:55:56
阅读次数:
49
CentOS6网卡名称Centos6网卡接口命名方式:以太网:eth[0,1,2,...]PPP:ppp[0,1,2,…]网络接口识别并命名相关的udev配置文件:/etc/udev/rules.d/70-persistent-net.rules此文件主要是记录网卡的信息,这个文件在虚拟机克隆的时候比较有用处,一般说来,虚拟机克隆,相应也会把网卡物理地址克隆过来,所以需要到这个文件里把相应的网卡记
分类:
其他好文 时间:
2020-07-28 00:07:03
阅读次数:
104