openstack 默认开的远程控制是novnc 这里是用kolla初建的openstack nova_console vi /etc/kolla/globals.yml ... # Valid options are [ novnc, spice, rdp ]nova_console: "spic ...
分类:
其他好文 时间:
2018-09-01 20:31:44
阅读次数:
291
别人给了一个Oracle文件,结果在导入的时候发现有问题,报错如下:IMP-00010: not a valid export file, header failed verification在网上查询后发现,是版本数据库问题造成,使用UE编辑器打开dmp文件,看到首行如下:上图表明该数据库版本为:... ...
分类:
数据库 时间:
2018-08-31 14:50:33
阅读次数:
788
1 //easy 2 //注意字符串长度可能不一样 3 4 class Solution { 5 public boolean isAnagram(String s, String t) { 6 if(s.length() != t.length()) return false; 7 char[] ... ...
分类:
其他好文 时间:
2018-08-28 10:31:58
阅读次数:
118
UnionFind就是acm中常用的并查集... 常用操作 Ref 相关问题: Graph Valid Tree (权限题做不了嘤嘤嘤) 684. Redundant Connection 685. Redundant Connection II ...
分类:
其他好文 时间:
2018-08-26 13:50:02
阅读次数:
164
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if: No ...
分类:
其他好文 时间:
2018-08-25 11:42:25
阅读次数:
145
Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose of this problem, w ...
分类:
其他好文 时间:
2018-08-24 13:22:31
阅读次数:
118
Given a positive integer num, write a function which returns True if num is a perfect square else False. Note: Do not use any built-in library functio ...
分类:
其他好文 时间:
2018-08-21 15:11:23
阅读次数:
132
Httpd服务器的坑 1. 在/etc/httpd/conf/httpd.conf中的配置信息, 有时注释到的内容仍然会生效 2. 配置Auth时, 允许htpasswd规定的文件中的所有的用户, Require valid uesr, 允许特定的用户Require user user1 user2 ...
分类:
Web程序 时间:
2018-08-20 12:26:04
阅读次数:
213
Given a binary tree, determine if it is a valid binary search tree (BST). Assume a BST is defined as follows: The left subtree of a node contains only ...
分类:
其他好文 时间:
2018-08-19 13:58:11
阅读次数:
130