在线上的服务器有时需要限制用户登录次数.这个功能可以通过pam的pam_tally2.so模块来实现 PAM模块是用sun提出的一种认证机制 pam_tally2.so模块 一.格式 pam_tally2.so [file=/path/to/counter] [onerr=[fail|succeed ...
分类:
系统相关 时间:
2018-08-29 14:23:45
阅读次数:
602
函数式编程和面向对象对比 def email(em,text): """ 发送邮件 :return: """ print(em,text) def msg(tel,text): """ 发送短信 :return: """ print(tel,text) def wechat(num,text): " ...
分类:
编程语言 时间:
2018-08-27 18:22:08
阅读次数:
217
1.以流的方式下载. public HttpServletResponse download(String path, HttpServletResponse response) { try { // path是指欲下载的文件的路径。 File file = new File(path); // 取 ...
分类:
编程语言 时间:
2018-08-25 14:39:18
阅读次数:
188
InnoDB采用按表空间(tablespace)的方式进行存储数据, 默认配置情况下会有一个初始大小为10MB, 名字为ibdata1的文件, 该文件就是默认的表空间文件(tablespce file),用户可以通过参数innodb_data_file_path对其进行设置,可以有多个数据文件,如果... ...
分类:
数据库 时间:
2018-08-22 00:19:31
阅读次数:
282
实例1:斐波那契数列 实例二:计算路径中总文件的大小 递归 循环方法: ...
分类:
其他好文 时间:
2018-08-21 20:13:11
阅读次数:
123
mysql进阶1.mysql配置文件mysql的配置文件为/etc/my.cnf配置文件查找次序:若在多个配置文件中均有设定,则最后找到的最终生效/etc/my.cnf-->/etc/mysql/my.cnf-->--default-extra-file=/PATH/TO/CONF_FILE-->~/.my.cnfmysql常用配置文件参数:参数说明port设置监听端口socke
分类:
数据库 时间:
2018-08-18 13:20:46
阅读次数:
173
文件的打开与关闭 file=open(file_path,mode='r')其中file_path为文件路径(绝对路径和相对路径都是可以的),mode是文件的打开方式。open()函数会返回一个文件对象,我们可以通过这个文件对象来操作文件。 file.flush()刷新缓冲区。 file.close ...
分类:
编程语言 时间:
2018-08-13 20:47:40
阅读次数:
129
samb服务部署步骤 yum install samba –y vim /etc/samba/smb.conf : security = share、 user(需要输入用户密码) share defines: [company] comment=share file path=/company p ...
分类:
其他好文 时间:
2018-08-12 17:27:51
阅读次数:
119
判断是否存在:db.course.find({"filename": { $exists: true } }).count()移除字段:db.course.update({},{$unset:{"filename":""}},{multi:true})db.test.update({},{$unse ...
分类:
数据库 时间:
2018-08-12 17:24:05
阅读次数:
198
chmod权限 使用命令"man 2 chmod"学习chmod函数? int chmod(const char *path, mode_t mode);– 参数*path:文件路径。– 参数mode:直接使用数字即可。和前面命令中chmod 777 xxx 中的777 这个参数含义类似,也可以使用 ...
分类:
其他好文 时间:
2018-08-01 16:02:44
阅读次数:
165