查看PATH:echo $PATH 以添加mongodb server为列 修改方法一: export PATH=/usr/local/mongodb/bin:$PATH //配置完后可以通过echo $PATH查看配置结果。 生效方法:立即生效 有效期限:临时改变,只能在当前的终端窗口中有效,当前窗...
CentOS下Redis的安装与简单管理
redis官方发布版本 https://github.com/MicrosoftArchive/redis/releases redis desktop官方版本下载 https://github.com/uglide/RedisDesktopManager 安装Redis需要知道自己需要哪个版本,有针对性的安装,比如如果需要redis GEO这个...
Centos环境下安装mongoDB
安装前注意: 此教程是通过yum安装的.仅限64位centos系统 安装步骤: 1、创建仓库文件: vi /etc/yum.repos.d/mongodb-org-3.4.repo 然后复制下面配置,保存退出 [mongodb-org-3.4] name=MongoDB Repository baseurl=https://repo.mongodb...
解决Proxmox 5 apt-get update 更新时报错
修改/etc/apt/sources.list.d/pve-enterprise.list注释掉解决, 1 #deb https://enterprise.proxmox.com/debian/pve stretch pve-enterprise 或者直接删除,哈哈。 1 rm -f /etc/apt/sources.list.d/pve-enterprise.list 最后,为了更...
响应式网页Html5基本模板架构
个人经常使用结构如下: <!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <!--[if lt IE 9]> <scrip...
Scrapy安装方法!
最近学习使用scrapy进行数据采集,这个框架还是不错的,下面简单记录下安装方法: 1、首先安装pip, Python 2 >=2.7.9 or Python 3 >=3.4下需要用这种方法安装pip curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py pyt...