400GBASE-SR8 400G QSFP-DD ActiveOptical Cable has transceiver at its respective ends, a combination oftransmitter and receiver which is connected to a ...
分类:
其他好文 时间:
2020-04-01 13:07:43
阅读次数:
116
Every request proxied by Kong must be associated with a Consumer. You’ll now create a Consumer named anonymous_users 启用认证插件后,如果不配置匿名用户,那么如果客户 端不传递凭据,那 ...
分类:
数据库 时间:
2020-03-31 22:57:50
阅读次数:
239
IMP-00038 Table of Contents 1. 现象 2. 原因 3. 解决方法 1 现象 报错信息: IMP-00038: Could not convert to environment character set's handle IMP-00000: Import termin ...
分类:
其他好文 时间:
2020-03-30 21:27:34
阅读次数:
85
这个是测试库的问题,但是过了两天生产库也出现同样的问题了,所以大家彻查了一下原因。 目前了解的情况是与CPU核数过高、数据库的并行参数(paraller_max_server)设置过高(256)等有关,ORACLE的算法在低版本有BUG(在cpu核数超过128、并行参数设置过高时容易触发)。 Ale ...
分类:
数据库 时间:
2020-03-30 11:14:07
阅读次数:
70
Problem : Write an algorithm to determine if a number is "happy". A happy number is a number defined by the following process: Starting with any posit ...
分类:
移动开发 时间:
2020-03-29 22:38:14
阅读次数:
107
挂载的sdcard默认组 aid_sdcard_r ,www-data没有写权限如果给 aid_sdcard_r 和 www-data 添加到 aid_media_rw ,则 www-data 就能读写 sdcard usermod -a -G aid_media_rw aid_sdcard_rus ...
分类:
移动开发 时间:
2020-03-29 21:29:43
阅读次数:
144
搜了一晚上,都是用的B-Shell的,说法也各不相同。参考其中一个,把我的C-shell弄好了。 修改: 1. /etc/csh.cshrc: 加入 setenv LANG en_US.UTF-8 2. ~/.cshrc: setenv LC_ALL en_US.UTF-8alias ls 'ls ...
分类:
系统相关 时间:
2020-03-29 01:26:24
阅读次数:
95
镜像 docker search centos docker pull centos docker images //列出镜像 docker rmi //删除镜像 //创建镜像&镜像打包&导入镜像docker commit mycentos mytomcatdocker save -o /root/ ...
分类:
其他好文 时间:
2020-03-28 23:36:04
阅读次数:
67
Django默认生成的表名: 应用名小写_模型类名小写 可以通过在模型类中定义Meta类来修改表名: class Department(models.Model): """部门类""" name = models.CharField(max_length=20) create_date = mode ...
分类:
Web程序 时间:
2020-03-27 21:50:34
阅读次数:
104