一、创建表 创建模型 创建名为book的app,在book下的models.py中创建模型: from django.db import models # Create your models here. class Book(models.Model): id=models.AutoField(p ...
分类:
数据库 时间:
2021-04-10 13:08:36
阅读次数:
0
sudo是linux系统管理指令,是允许系统管理员让普通用户执行一些或者全部的root命令的一个工具,如halt、reboot、su等等。 登录到root用户 将用户加入sudoers visudo //或者vi /etc/sudoers 移动光标,到一行root ALL=(ALL) ALL的下一行 ...
分类:
其他好文 时间:
2021-04-10 13:05:39
阅读次数:
0
二叉树——236. 二叉树的最近公共祖先 题目: 思路: 后续遍历+DFS:具体思路参照了题解中的解析 代码: class Solution { public: TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* ...
分类:
其他好文 时间:
2021-04-09 13:25:04
阅读次数:
0
[root@localhost ~]# uuidgen ens33223bdb47-2fed-4773-b984-5f5733e619042.UUID号写入网络配置文件ifcfg-ens33NAME=ens33DEVICE=ens33ONBOOT=yesUUID=223bdb47-2fed-4773 ...
分类:
系统相关 时间:
2021-04-08 14:02:02
阅读次数:
0
zabbix服务端安装 环境: 主机|ip|应用 | | 服务端|192.168.23.140|基于lamp架构下部署zabbix server, zabbix agent 准备工作 //安装依赖包 [root@localhost ~]# yum -y install net-snmp-devel ...
分类:
其他好文 时间:
2021-04-08 13:51:27
阅读次数:
0
1、查找/var目录下属主为root,且属组为mail的所有文件 有目录没有文件,-type f [14:29:30 root@centos7 ~]#find /var -user root -a -group mail -ls 67142179 4 drwxrwxr-x 2 root mail 4 ...
分类:
其他好文 时间:
2021-04-08 13:25:06
阅读次数:
0
部署nginx #1.先去查看仓库有没有镜像 root@fanwd-virtual-machine:/home# docker search nginx NAME DESCRIPTION STARS OFFICIAL AUTOMATED nginx Official build of Nginx. ...
分类:
其他好文 时间:
2021-04-08 13:07:20
阅读次数:
0
在centos7.5中解决bash: pip:command not find 问题 [root@localhost ~]# python get-pip.py Hi there! The URL you are using to fetch this script has changed, and ...
分类:
其他好文 时间:
2021-04-08 13:04:02
阅读次数:
0
linux上执行wget报错:unable to resolve host address 爱摄影的coder 2018-07-21 10:25:19 7270 收藏 4 分类专栏: Linux 版权 使用wegt命令报错情况 [root@centosserver2 downloads]# wget ...
分类:
系统相关 时间:
2021-04-08 13:03:11
阅读次数:
0
(1)使用客户端连接服务器端(连接的命令结尾不能加分号) mysql.exe -h127.0.0.1 -P3306 -uroot -p -h host IP地址/域名 127.0.0.1/localhost -P port 端口 -u user 用户名 root 管理员账户 -p password ...
分类:
数据库 时间:
2021-04-07 11:41:23
阅读次数:
0