码迷,mamicode.com
首页 >  
搜索关键字:port    ( 23009个结果
Uncaught (in promise) Error: Redirected when going from "/login" to "/home" via a navigation guard.
项目中遇到如下报错内容:Uncaught (in promise) Error: Uncaught (in promise) Error: Redirected when going from "/login" to "/home" via a navigation guard. 原因:vue-ro ...
分类:其他好文   时间:2021-04-07 11:16:46    阅读次数:0
达梦MPP集群搭建
1. 端口规划 服务器 ip 实例名 PORT_NUM MAL_PORT MAL_DW_PORT GROUP 主1 192.168.44.221 GRP1_MPP_EP01 5236 5337 5253 GRP1 备1 192.168.44.222 GRP1_MPP_EP11 5237 5338 5 ...
分类:其他好文   时间:2021-04-07 11:03:59    阅读次数:0
网络编程与自动化
环境准备 本机安装python3.x , Geany ,ensp 安装实验需要的库 paramiko 交换机1配置sys sys SW1 vlan 10 q int g0/0/1 port link acc port def vlan 10 q user-interface vty 0 4 auth ...
分类:其他好文   时间:2021-04-05 12:14:39    阅读次数:0
实验1
task1 print("hey,u")print("hey","u")x=1y=2z=3print(x,y,z)print("x=%d,y=%d,z=%d"%(x,y,z))print("x={},y={},z={}".format(x,y,z))print(f"x={x},y={y},z={z} ...
分类:其他好文   时间:2021-04-05 12:13:30    阅读次数:0
模块-随机模块:random
import random print(random.random()) # (0,1) 随机小数 0到1 print(random.randint(3,5))# [3,4,5] 取整 print(random.randrange(3,5))# [3,5) 取整 print(random.choic ...
分类:其他好文   时间:2021-04-05 12:02:18    阅读次数:0
cmd 其他相关命令
1、ping命令,如ping www.baidu.com ,用于检测网络是否正常。 2、telnet ip port 用于检测某个指定端口是否开启。 3、curl是常用的命令行工具,用来请求Web服务器。它的名字就是客户端(client)的URL工具的意思。它的功能非常强大,命令行参数多达几十种。如 ...
分类:其他好文   时间:2021-04-05 11:43:06    阅读次数:0
[Docker] MACVLAN Network 簡介
此篇文章介紹 Docker MACVLAN Network 及其運作方式 環境介紹 以下的測試將會在以下環境進行: OS:Ubuntu 18.04 Docker: 18.03.1-ce 網卡配置: eth0:10.103.19.0/24 eth1:trunk port (10.103.[17-18] ...
分类:Web程序   时间:2021-04-02 13:35:18    阅读次数:0
ModuleNotFoundError: No module named "DBUtils"
用python写数据库连接时要用到数据连接池于是就想到了DBUtils ,这个简单pip install DBUtile 安装完后写代码测试一下 from DBUtils.PooledDB import PooledDB Traceback (most recent call last): File ...
分类:数据库   时间:2021-04-02 13:02:54    阅读次数:0
递归函数 和 匿名函数
递归函数 函数的递归调用: 是函数嵌套调用的一种特殊形式。 具体指的是在调用一个函数的过程中又直接或者间接的调用了自己,称之为函数的递归调用。 函数的递归调用就是一个循环的过程,用函数来实现循环 def f1(): print('from f1') f1() f1() # 函数默认调用1000次 d ...
分类:其他好文   时间:2021-04-01 13:41:29    阅读次数:0
Java小知识点
1.求最大最小值 Math.max ; Math.min 注意是Math首字母大写, min与max首字母不需要大写。 2.整数表示无穷大 Integer.MAX_VALUE 3.输出数组 1.遍历数组打印输出 2.使用Arrays.toString(a);方法进行输出,a是要输出的数组。 4.求数 ...
分类:编程语言   时间:2021-04-01 13:13:30    阅读次数:0
23009条   上一页 1 ... 25 26 27 28 29 ... 2301 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!