MYSQL数据库安装完成后,默认最大连接数是100。命令: show processlist; 如果是root帐号,你能看到所有用户的当前连接。如果是其它普通帐号,只能看到自己占用的连接。 show processlist;只列出前100条,如果想全列出请使用show full processlist; mysql> show processlist;命令: show status;命令:show...
分类:
数据库 时间:
2014-06-09 23:44:10
阅读次数:
336
本人很懒,写这篇博文只是为了以后忘记时可以翻出来查看,所以以下内容写的很简洁,如果完全没有经验的同学请另找文章
一、环境配置(win7):
用户变量如下:
ANDROID_SDK_ROOT:E:\cocos2d\adt\adt-bundle-windows-x86_64-20140321\sdk
ANT_ROOT:E:\cocos2d\apache-ant-1.9.3\bin
C...
分类:
移动开发 时间:
2014-06-08 16:31:13
阅读次数:
496
题目
Given a binary tree, find its maximum depth.
The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.
方法
使用DFS对树进行遍...
分类:
其他好文 时间:
2014-06-08 10:26:33
阅读次数:
207
1. sudo apt-get install mysql-server, input administrator password , '123'
2. enter mysql promot in command line, 'mysql -u root -p', input password
3. create database "CREATE DATABASE xoops...
分类:
数据库 时间:
2014-06-08 10:26:14
阅读次数:
356
如果你执行下以下命令基本上会在Oracle软件目录下会发现两个root.sh的脚本
[oracle@rh64 Templates]$ find /u01/ -name root.sh |xargs ls -ltr
-rwxrwx--- 1 oracle oinstall 10 May 14 02:37 /u01/app/db11g/product/11.2.0/dbhome_1/invent...
分类:
数据库 时间:
2014-06-08 09:50:59
阅读次数:
946
题目
Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root).
For example:
Given binary tree {3,9,20...
分类:
其他好文 时间:
2014-06-08 09:23:34
阅读次数:
230
一、创建DOM 1 XMLBuilder.java 2 3 用于创建DOM,Root结点 4 5
/******************************************************************** 6 * 项目名称
:rochoc...
分类:
编程语言 时间:
2014-06-08 01:35:44
阅读次数:
566
PathsumDescription:Given a binary tree and a
sum, determine if the tree has a root-to-leaf path such that adding up all the
values along the path equa...
分类:
其他好文 时间:
2014-06-08 01:11:46
阅读次数:
395
添加运行时共享库目录运行使用共享库的程序需要加载共享库(不同于G++
编译时指定的链接库),添加共享库的步骤:修改文件 /etc/ld.so.conf 添加共享库目录运行 ldconfig 同步更新一下如:$ gedit
/etc/ld.so.conf #添加 /root/dreamlove...
分类:
其他好文 时间:
2014-06-07 22:12:01
阅读次数:
314
用户和用户组管理
Linux系统是个多用户多任务操作系统,在一个系统中可能同时有多个用户在作业。Linux中主要有三类用户
root用户:也称为超级用户,拥有最高权限,可以管理其他用户
虚拟用户:虚拟用户就是登录shell为/sbin/nologin的用户,这类用户不能登入系统。如ftp,apach...
分类:
系统相关 时间:
2014-06-07 22:02:42
阅读次数:
378