- 浏览: 129760 次
- 性别:
- 来自: 深圳
最新评论
-
jacklin2015:
...
scrapy 抓的段子里的 \n 去不掉 -
jacklin2015:
''.join(sel.css("div.item- ...
scrapy 抓的段子里的 \n 去不掉 -
jacklin2015:
...
linux fdisk mount -
jacklin2015:
...
python mongodb 正则查询
文章列表
添加 Userprivilege 点击select 时 报错,‘svn_path’ ×××××
solution :(***/svnmanager/svnmanager/RepositoryModuleUser/UserPrivilegesEditPage.php ,还有 ×××/svnmanager/svnmanager/RepositoryModuleUser/GroupPrivilegesEditPage.php)
把 $options = array('fetchmode' => VERSIONCONTROL_SVN_FETCHMODE_ARRAY, 'svn_path' ...
auth 认证,忙活了好久,都不行。
后来不断的试验,总算可以了。问题出在开始启动时就带有--auth 参数,导致后面不能进行认证,因为开始并没有创建认证的用户和密码。以至于好多操作都受限制。解决的办法是,第一次启动mongod时不加--auth参数,然后在admin数据库里创建一个admin 和root用户。然后再启动mongod 加上--auth 参数,再登入mongo时 先验证 db.auth("admin":"admin"),db.auth("root","root")
之后就可以进行各种操作了
1.先下载 ...
result = db.devices.find({'$and':[{'stats.fwver': v},{'username':{'$regex':r'(?i)ltu'}}]})#匹配ltu
result = db.devices.find({'$and':[{'stats.fwver': v},{'username':{'$regex':r'^[\d+]'}}]})#匹配数字
*$ sudo mount -t ext4 /dev/sdb1 /home
提示:/dev/sdb1 is apparently in use by the system; will not make a 文件系统 here!
原因/dev/sdb1 正在使用,
* imeadmin@imeadmin:~$ sudo dmsetup status
vgdata-lvdata1: 0 1172111360 linear
vgdata-lvdata1: 1172111360 1172111360 linear
vgdata-lvdata1: 2344222720 3907018752 linea ...
cluster 的结构如下:
keyspace :{replication_factor:1, class:SimpleStrategy}
[root@edog1 apache-cassandra-2.0.9]# bin/nodetool status
Note: Ownership information does not include topology; for complete information, specify a keyspace
Datacenter: datacenter1
=======================
Status=Up/Down
|/ State=No ...
env.host=['server1']
结果还是得输入主机名
改为如下:
env.host_string = 'server1' # ‘root@cca1.szime.com’
这样就不用输入host 和password了。前提是ssh已经打通
----------------------------------------
env.roledefs = {
's1':['root@cca1.szime.com',],
's2':['root@cca2.szime.com',],
's3':['root@cca3.szime.com',],
's4':['root@cca4.szime ...
运行crontab时会报python 某个 module 不存在,
解决方法:/usr/local/bin/python 要运行的脚本.py
其实就是把python的完整路径给出就行
$ java HelloWorld
报错如下:
Exception in thread "main" java.lang.NoClassDefFoundError: HelloWorld (wrong name: hello/Hello)
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(ClassLoader.java:800)
at java.security.SecureClassLoader.defineClass(SecureCla ...
cassandra 的 cqlsh 客户端进不了,狂看各种教程,终于在stackoverflow 找到灵感。
开始报错:Connection error: Could not connect to 192.168.1.254:9160
原因是 IP 不对,IP 应该是 rpc_address ,这是在cassandra.yaml 里配置的。
我这里的 rpc_address:192.168.1.254
所以,在终端输入: cqlsh 192.168.1.254 9160
就可以登进去了。
来源:http://stackoverflow.com/questions/29121904/cass ...
crontab 执行的时候就报错,在正常的shell环境下就可以执行,有时还会报错,如:
[[: not found
unexpected operator
。。
可能原因如下:
1。crontab 的shell环境是 /bin/sh 而 sh 是指向 dash 的,dash 算是 bash的简化版吧。
因此 dash 的功能没有bash强大。也就导致在shell里可以执行的脚本,在crontab 里执行不了
,因为shell 的 环境是/bin/bash。
所以,要让在shell里能执行的脚本也能在crontab里执行,可以在crontab 前面加上 SHELL=/bin/bash 就行了! ...
1.https://github.com/laurolins/nanocube (来源)
2.Linux (Ubuntu)
On a newly installed 64-bit Ubuntu 14.04 system, gcc/g++ is already 4.8.2, but you should install the following packages:
sudo apt-get install build-essential
sudo apt-get install automake
sudo apt-get install libtool
sudo apt-get inst ...