背景: 新建了用户,没有取消掉强制密码策略 修改掉策略报错错误: The CHECK_POLICY and CHECK_EXPIRATION options cannot be turned OFF when MUST_CHANGE is ON.使用代码修改: USE Master GO A...
分类:
数据库 时间:
2014-11-24 11:50:17
阅读次数:
276
Count and SayThe count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1 is read off as "one 1" or 11.11...
分类:
其他好文 时间:
2014-11-24 11:28:33
阅读次数:
218
关闭虚拟机防火墙:关闭命令: service iptables stop永久关闭防火墙:chkconfig iptables off两个命令同时运行,运行完成后查看防火墙关闭状态service iptables status
分类:
其他好文 时间:
2014-11-23 21:30:16
阅读次数:
170
/** A new configuration where the behavior of reading from the default
* resources can be turned off.
*
* If the parameter {@code loadDefaults} is false, the new instance
* will no...
分类:
其他好文 时间:
2014-11-23 16:10:02
阅读次数:
186
这个命令是最实用的,而我却一直忽略到现在,真的是懊恼啊, 今天就来简单看下其支持的参数吧,很多都是和iwpriv重叠的。
root@YSWiFi:~# iwconfig --help
Usage: iwconfig [interface]
interface essid {NNN|any|on|off}
...
分类:
其他好文 时间:
2014-11-23 09:17:58
阅读次数:
192
一 服务端配置
1.配置前先关闭iptables和SELINUX,避免安装过程中报错。
[root@zabbix ~]# service
iptables stop
[root@zabbix ~]# chkconfig
iptables off
[root@zabbix ~]# getenforce
Disabled
[root@zabbix ~]#setenfor...
分类:
其他好文 时间:
2014-11-22 21:37:33
阅读次数:
314
setenv LC_CTYPE en_US.UTF-8
defutf8 on
termcapinfo xterm ‘hs:ts=\E]2;:fs=\007:ds=\E]2;screen\007‘
# 启动时不显示欢迎屏幕
startup_message off
# 屏幕缓冲区 1024 行。
defscrollbac...
分类:
系统相关 时间:
2014-11-22 07:07:19
阅读次数:
342
在数据库用户管理中去掉了“强制密码过期”!如果把“强制实施密码策略”的勾也去掉了,出现如下错误!当 MUST_CHANGE 为 ON (开)时,不能将 CHECK_POLICY 和 CHECK_EXPIRATION 选项设为 OFF (关)。解决办法:1.删除帐号重新建立,注意去掉“登录后修改密码的...
分类:
数据库 时间:
2014-11-21 20:26:23
阅读次数:
220
查看状态:/etc/init.d/iptables?status 关闭:/etc/init.d/iptables?stop 禁止防火墙在系统启动的时候启动:/sbin/chkconfig?--level?2345?iptables?off 重启防火墙:/etc/init.d/iptables?restart 其它高...
分类:
系统相关 时间:
2014-11-21 00:12:52
阅读次数:
161
SET DEFINE OFF
SET SERVEROUTPUT ON
DECLARE
req UTL_HTTP.REQ;
resp UTL_HTTP.RESP;
value VARCHAR2(32767);
V_DATA VARCHAR2(100) := 'strDate=”31-APR-2012”&strName=”TestName”';
BEGIN
req := UTL_...
分类:
Web程序 时间:
2014-11-20 17:04:02
阅读次数:
149