-------------------------------------------------------------------------------------------------------RBAC(Role Based Access Control),意为基于角色的访问控制,这里用...
分类:
其他好文 时间:
2014-08-07 22:57:14
阅读次数:
260
Centos 安装FTP配置目录权限,iptables设置ftp服务 2012-07-06 admin Leave a comment Go to comments CentOS 安装vsftpd,设置Iptables 限制用户访问自己目录安装好vsftpd后,打开配置文件:[root@hex...
分类:
其他好文 时间:
2014-08-07 21:49:00
阅读次数:
596
功能说明: touch命令参数可创建新文件以及更改文档或目录的日期时间,包括存取时间和更改时间。命令格式: touch[选项]...文件...命令参数: -a或--time=atime或--time=access或--time=use 只更改存取时间。-c或--no-create 不建立任何...
分类:
系统相关 时间:
2014-08-07 18:38:00
阅读次数:
331
当使用apt-get安装mysql后,ubuntu会自动生成一个用户名和密码。所以在第一次登陆时会报如下错误ERROR 1045 (28000): Access denied for user 'db'@'localhost' (using password: NO)而真正的用户名和密码在/etc/...
分类:
数据库 时间:
2014-08-07 18:00:00
阅读次数:
181
1、:=是不能用在函数外,如果要声明全局变量请用关键字var。 2、常量是 const?Name?=?value 3、如果变量要声明类型: xxx?int:=1; 4、布尔值的类型为bool,值是true或false,默认为false。 5、GO语言的变量类...
分类:
其他好文 时间:
2014-08-07 13:32:50
阅读次数:
279
A cluster of computing systems is provided with guaranteed real-time access to data storage in a storage area network. Processes issue request for ban...
分类:
Web程序 时间:
2014-08-07 12:34:09
阅读次数:
437
A computer system with read/write access to storage devices creates a snapshot of a data volume at a point in time while continuing to accept access r...
分类:
其他好文 时间:
2014-08-07 12:03:00
阅读次数:
258
#自搭建了个人博客有需要交流学习的可以访问www.wpython.com#!/usr/bin/envpython
importdatetime,os,sys,shutil
log_path=‘/alidata/log/nginx/access/‘
log_file=‘www.wpython.com.log‘
yesterday=(datetime.datetime.now()-datetime.timedelta(days=1))
try:
os.makedir..
分类:
编程语言 时间:
2014-08-07 07:32:10
阅读次数:
267
<?php if (!defined(‘BASEPATH‘)) ??? exit(‘No direct script access allowed‘); class UseOra extends CI_Controller { ??? public function index() ??? { ??????? echo ‘欢迎使用测试CI使用O...
分类:
数据库 时间:
2014-08-07 03:09:38
阅读次数:
406
GO语言中引入包使用import,我将在本文讲解下规则和用法。 一些规则: 1、包中不能有main方法。 2、同文件夹中可以直接用方法名调用。 3、main函数建议放在package main里 4、main不能调用同个目录下的其它文件中...
分类:
其他好文 时间:
2014-08-06 23:19:42
阅读次数:
1133