码迷,mamicode.com
首页 >  
搜索关键字:isa    ( 2690个结果
MHA 自动切换脚本
[root@pxc2 ~]# cat /root/master_ip_failover #!/usr/bin/env perl use strict;use warnings FATAL => 'all'; use Getopt::Long; my ( $command, $ssh_user, $o ...
分类:其他好文   时间:2020-06-29 13:51:34    阅读次数:113
MySQL--创建数据表
语法格式: create table 表名( 字段1 数据类型 [约束] [备注], .... 字段n 数据类型 [约束] [备注] ) [表类型] [字符集] [存储引擎] [注释]; 注:中括号中的是可省略的 注意点:(1)最后一个字段描述完之后不用加逗号 (2)括号必须是封闭的 (3)MySQ ...
分类:数据库   时间:2020-06-27 13:24:59    阅读次数:83
Mysql服务器搭建
1:安装从网上下载文件的wget命令[root@master ~]# yum -y install wget 2:下载mysql的repo源[root@master ~]# wget http://repo.mysql.com/mysql-community-release-el7-5.noarch ...
分类:数据库   时间:2020-06-27 11:23:34    阅读次数:64
centos下smartctl安装配置(硬盘S.M.A.R.T信息及坏块检测命令)
SMART是一种磁盘自我分析检测技术 参考:大神博客 1、安装yum install smartmontools smartctl -i :显示设备的身份信息,检查硬盘是否打开了SMART支持 如果为Disabled,使用:smartctl --smart=on --offlineauto=on - ...
分类:其他好文   时间:2020-06-25 19:48:39    阅读次数:88
odoo base_rest_demo 的理解
重点: 以partner 的api接口为例: # Copyright 2018 ACSONE SA/NV # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). from odoo.addons.base_rest.compon ...
分类:其他好文   时间:2020-06-25 10:00:49    阅读次数:85
文件打不开,移到废纸篓
第一种办法sudo spctl --master-disable(安全与隐私中允许任何来源的应用安装) 若是第一种还打不开,sudo xattr -r -d com.apple.quarantine空格加上finder中打不开的应用路径(直接拖进终端) ...
分类:其他好文   时间:2020-06-24 17:50:13    阅读次数:60
记录一次U盘由于制作系统启动盘而导致分区问题后的修复过程
此过程会消除U盘中的所有数据 原本16G的金士顿U盘,由于被我拿去自制Ubuntu系统启动盘后,再插上电脑,发现在文件资源管理器中显示U盘只剩下570多Mb的总容量。 在网上找了下在windows系统下重新设置分区的教程 首先win键+R 开启并进入cmd 输入diskpart 并回车运行 进入新弹 ...
分类:其他好文   时间:2020-06-24 00:27:00    阅读次数:103
QWidget::repaint: Recursive repaint detected
原因分析: Ah, ok. I thought it was commented out because it caused the error. You can always put a breakpoint in the line printing the error and look at t ...
分类:其他好文   时间:2020-06-23 21:48:50    阅读次数:84
Oracle适配问题解决
问题一:SQL 命令未正确结束 问题二:ORA-00907: 缺失右括号 问题三:mysql函数在Oracle中不适用 问题四:ORA-00936: 缺失表达式 问题五:No serializer found for class java.io.ByteArrayInputStream and no ...
分类:数据库   时间:2020-06-23 13:41:53    阅读次数:115
数组扁平化:(多维数组 -> 一维数组)
1.转成字符串,利用正则的方法 let ary = [1, [2, [3, [4, 5]]], [6, 7, [8, 9, [11, 12]], 10]]; //=>[1,2,3,4,5,6] let str = JSON.stringify(ary); //=>第一种处理 // console.l ...
分类:编程语言   时间:2020-06-22 01:43:48    阅读次数:63
2690条   上一页 1 ... 12 13 14 15 16 ... 269 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!