51dev.com IT技术开发者社区

51dev.com 技术开发者社区

python连接MongoDB(无密码无认证)

python连接MongoDB(无密码无认证)

 无密码无认证下连接frompymongoimportMongoClienthost='127.0.0.1'#你的ip地址client=MongoClient(host,27017)#建立客户端对象db=client.mydb#连接mydb数据库,没有则自动创建myset=db.tests...

Mongodb 创建管理员帐号与普通帐号

Mongodb 创建管理员帐号与普通帐号

 数据库操作权限readAnyDatabase任何数据库的只读权限userAdminAnyDatabase任何数据库的读写权限userAdminAnyDatabase任何数据库用户的管理权限dbAdminAnyDatabase任何数据库的管理权限 启动客户端:cd/usr/loc...

HTML DOM querySelector() 方法

HTML DOM querySelector() 方法

 document.querySelector(".TRS_Editor").childNodes[6].childNodes[0].childNodes[0]document.querySelector("img[style]") ...

python redis 操作

python redis 操作

 1、String操作  redis中的String在在内存中按照一个name对应一个value来存储set()#在Redis中设置值,默认不存在则创建,存在则修改r.set('name','zhangsan')'''参数:set(name,value,ex=None,px=None,nx...

Centos7下安装memcached

Centos7下安装memcached

 1.whichmemcached//如果已经安装,会有“/usr/bin/memcached”类似的输出memcached-h//memcache帮助列表php-m|grepmemcache//如果已经安装,会显示memcache,否则没有输出可以用上面的三个命令...

PHP Warning:  Module 'memcache' already loaded in Unknown on line 0

PHP Warning: Module 'memcache' already loaded in Unknown on line 0

 出现类似PHPWarning:Module*alreadyloadedinUnknownonline0,一般是可能因为升级php导致的组件重复加载,解决就是1.vi/etc/php.ini2.将 extension=*.so去除掉即可...

centos7 彻底卸载PHP7

centos7 彻底卸载PHP7

 [root@xxxphp-memcached]#rpm-qa|grepphpphp70w-common-7.0.33-1.w7.x86_64php70w-devel-7.0.33-1.w7.x86_64php70w-7.0.33-1.w7.x86_64php70w-cli-7.0.33-...

centos7下安装php7

centos7下安装php7

 1.安装webtatic-releaserpm-Uvhhttps://mirror.webtatic.com/yum/el7/webtatic-release.rpm[root@xxx~]#rpm-Uvhhttps://mirror.webtatic.com/yum/el7/webtat...

memcached: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory

memcached: error while loading shared libraries: libevent-2.0.so.5: cannot open shared object file: No such file or directory

 1.在http://libevent.org/  下载libevent-2.0.22-stable.tar.gz2.tar-zxvf libevent-2.0.22-stable.tar.gz3.cd libevent-2.0.22-stable4...

Linux CentOS 7 安装mongoDB(4.0.6)

Linux CentOS 7 安装mongoDB(4.0.6)

 在官网下载安装包:https://www.mongodb.com/download-center/community 或者通过wget下载wgethttps://fastdl.mongodb.org/linux/mongodb-linux-x86_64-rhel70-4.0.6...

Centos7 linux下yum安装redis以及使用

Centos7 linux下yum安装redis以及使用

 下载fedora的epel仓库yuminstallepel-release安装redis数据库yuminstallredis启动redisserviceredisstart显示redis运行状态serviceredisstatus至此已经安装完毕。  #停止redis...

Ubuntu16.04下安装和配置Redis

Ubuntu16.04下安装和配置Redis

 需要连接互联网,然后执行sudoapt-getupdate更新软件包执行sudoapt-getinstallredis-server后如下图所示,我们输入y确认安装并使用空间接下来会执行完成,我们可以看到包括redis的版本信息等,执行serviceredisstatus可以查看redi...

centos7 查看防火墙状态

centos7 查看防火墙状态

 [root@xxx~]#firewall-cmd--statenotrunning ...

单词

单词

 obstacle障碍层inflation膨胀层ultrasonic超声层prohibition禁行线层footprint足迹geometry几何学polygon多边形 ...

python (协程)生产者,消费者

python (协程)生产者,消费者

 #coding=utf-8importgeventfromgevent.queueimportQueue,Emptyimporttimetasks=Queue(maxsize=4)defworker(n):try:whileTrue:task=tasks.get(timeout=1)#d...