2019-04-09
问:adduser --gecos GECOS是什么意思呢? 阅读全文...
2019-04-07
在CentOS 6版本,时间设置有date、hwclock命令,从CentOS 7开始,使用了一个新的命令timedatectl。 阅读全文...
2019-04-04
GeoLite2 数据库是一个免费的 IP 地理定位数据库,与 MaxMind 的商业 GeoIP2 数据库有一定可比性,但不如后者准确。 阅读全文...
2019-04-04
《中华人民共和国网络安全法》是为了保障网络安全,维护网络空间主权和国家安全、社会公共利益,保护公民、法人和其他组织的合法权益,促进经济社会信息化健康发展,制定的法律。网络安全法对哪些网络行为应当受到处罚进行了规范,尤其是强调了网络运营者等维护个人信息安全的“主体责任”,除了罚款,关闭网站、吊销执照的威慑力更大。 阅读全文...
2019-04-03
OpenLDAP主配置文件为/etc/openldap/slapd.conf 阅读全文...
2019-04-02
在Oracle的备份与恢复的知识点中,经常会出现Restore 和 Recovery两个词。由于这两个词在字典中的解释很接近,Oracle的官方文档中看到了以下解释。 阅读全文...
2019-04-02
1、alter table tablename move tablespace tbs_name
2、select 'alter index '||index_name||' rebuild tablespace $lts;' from user_indexes;
3、当我们建立一个含有lob字段的表时,oracle会自动为lob字段建立两个单独的segment,一个用来存放数据(LOBSEGMENT),另一个用来存放索引(LOBINDEX),并且它们都会存储在对应表指定的表空间中。但是当我们用alter table tablename move tablespace tbs_name 来对表做空间迁移时,只能移动非lob字段以外的数据。而如果我们要同时移动lob相关字段的数据,我们就必需用如下的含有特殊参数据的文句来完成,它就是: alter table tablename move lob(columeName) store as (tablespace newTableSpaceName);
这样,就将这两个对象从老的表空间移至新的表空间 。 阅读全文...
2019-04-02
人类的身体堪称这个世界上最神秘、最完美的杰作。科学家探索了几千年,也没能将人体完全搞清楚。你知道人类是唯一有下巴的动物吗?你知道人类为什么会起鸡皮疙瘩吗?你知道拇指有自己的脉搏吗?
1. It’s possible to brush your teeth too aggressively. Doing so can wear down enamel and make teeth sensitive to hot and cold foods.
阅读全文...
2019-04-02
我设置了鼠标右键,但是锁屏需要点鼠标左键。或者按CTRL+ALT+DEL才能输入密码。 阅读全文...
2019-03-27
1、您的 PHP 似乎没有安装运行 WordPress 所必需的 MySQL 扩展,重新编译php
#--with-mysql=mysqlnd \ 这个好像不支持
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd
configure: WARNING: unrecognized options: --with-mysql, --with-mcrypt, --with-curlwrappers, --enable-gd-native-ttf
/opt/LNMP 阅读全文...
2019-03-26
oerr ora 8002
08002, 00000, "sequence %s.CURRVAL is not yet defined in this session"
// *Cause: sequence CURRVAL has been selected before sequence NEXTVAL
// *Action: select NEXTVAL from the sequence before selecting CURRVAL 阅读全文...
2019-03-25
1、在editplus属性/兼容性/设置以管理员身份运行此程序,导致错误:editplus error code400a 阅读全文...
2019-03-22
1、修改/etc/ssh/sshd_config
增加useDNS no
2、在/etc/hosts增加ip对应一个名字
3、 cat /etc/ssh/sshd_config |grep -v ^# 阅读全文...
« 上一页
下一页 »