一、安装必须配置固定IP地址1、系统需求硬件需求:内存2G,SWAP4G,磁盘空间大于8G,TMP大于1G软件需求:yuminstallelfutils-libelf-develgccgcc-c++libaio-develsysstatunixODBCunixODBC-develcompat-libstdc++-33-3.2.3-yrpm-ivhpdksh-5.2.14-36.el5.i386.rpm用户环境:groupa..
分类:
数据库 时间:
2015-07-18 07:16:58
阅读次数:
225
CREATE TABLE tmp AS SELECT id FROM get_review_url WHERE (no,title,name,content) IN (SELECT no,title,name,content FROM get_review_url GROUP BY no,titl....
分类:
数据库 时间:
2015-07-17 11:33:28
阅读次数:
129
文件操作文件操作/etc/php.ini 配置文件的信息file_uploads = onupload_max_filesize = 100m # 允许上传文件大小的最大值post_max_size = 100M # 指通过表单 POST 给 PHP 的所能接收的最大值upload_tmp_dir ...
分类:
其他好文 时间:
2015-07-17 08:23:33
阅读次数:
116
以下这条Apple Script可以用管理员身份去执行一个命令或程序, 权限是继承的。
do shell script "chmod 777 /tmp" with administrator privileges
在Objective-C里也可以
NSDictionary *error = [NSDictionary new];
NSString *scrip...
分类:
移动开发 时间:
2015-07-16 16:53:18
阅读次数:
246
修改服务器上的nginx的配置文件/usr/local/nginx/conf/nginx.confhttp{limit_req_zone$binary_remote_addrzone=one:10mrate=3000r/m;proxy_cache_path/var/cache/nginxlevels=1:2keys_zone=one:8mmax_size=3000minactive=600m;proxy_temp_path/var/tmp;includemime.types;defau..
分类:
其他好文 时间:
2015-07-16 14:24:35
阅读次数:
143
1.默认方式启动直接执行Nginx的二进制文件即可/usr/local/nginx/sbin/nginx这时默认读取配置文件,配置文件目录/usr/local/nginx/conf/nginx.conf2.指定配置文件的启动方式/usr/local/nginx/sbin/nginx -c /tmp/...
分类:
其他好文 时间:
2015-07-16 11:22:14
阅读次数:
118
启动hive时报如下错误:/tmp/hive on HDFS should be writable. Current permissions are: rwx--x--x
这是/tmp/hive目录权限不够,需要提升权限
操作如下命令即可解决问题:
hadoop fs -chmod -R 777 /tmp...
分类:
其他好文 时间:
2015-07-15 22:57:27
阅读次数:
649
1 #include 2 using std::vector; 3 4 template 5 void swap(vector &a, int i, int j) 6 { 7 T tmp = a[i]; 8 a[i] = a[j]; 9 a[j] = ...
分类:
编程语言 时间:
2015-07-15 18:49:01
阅读次数:
213
function keyED($txt,$encrypt_key) //定义一个keyED { $encrypt_key = md5($encrypt_key); $ctr=0; $tmp = ''; for(...
分类:
Web程序 时间:
2015-07-15 16:33:02
阅读次数:
539
所谓旋转就是一端的位数移出字长后又插入到另一端中
unsigned char RoL(unsigned char c,int b)
{
int tmp;
for(int i=0;i<b;++i)
{
if(c & 0x80)
{
tmp=1;
}
else
{
tmp=0;
}
c <<= 1;
c |= tmp...
分类:
其他好文 时间:
2015-07-15 11:12:46
阅读次数:
124