摘要:
配置静态IP地址 配置IP地址 网络配置文件 vim /etc/network/interfaces 打开文件以后的界面为 在文件后面添加 auto eth0 iface eth0 inet static #配置eth0使用静态地址 address 192.168.170.130 #配置eth0的固 阅读全文
摘要:
查看ssh服务状态 /etc/init.d/ssh status 修改配置文件 vim /etc/ssh/sshd_config #PermitRootLogin prohibit-password --> PermitRootLogin yes #PasswordAuthentication ye 阅读全文
摘要:
MongoDB 安装模块 pip install pymongo 连接数据库 import pymongo client = pymongo.MongoClient() db = client["database_name"] # 跟上数据库名 collection = db["set_name"] 阅读全文