码迷,mamicode.com
首页 >  
搜索关键字:mirror segment    ( 4470个结果
Docker实战
docker 什么是Docker ? 基于linux内核,基于操作系统层面的,虚拟化技术 为什么使用Docker? 用来快速得部署项目 占用磁盘小,启动速度快(秒级) 环境一致性好,节约开发,测试,运维的部署时间 隔离性好,迁移更方便 能够实现快速部署 Docker怎么用(三要素)? 镜像:特殊的文 ...
分类:其他好文   时间:2020-07-04 10:32:34    阅读次数:469
linux maven 的安装与配置
ant,maven,gradle是java项目三大构建工具。以下将在deepin下进行maven的安装配置。 1. 官网下载maven包 2.复制到/opt目录下并解压 sudo cp /home/juanph/Downloads/apache-maven-3.6.3-bin.tar.gz /opt ...
分类:系统相关   时间:2020-07-03 23:01:05    阅读次数:80
Centos7 源码安装 PHP7.2
源码安装 php # yum install epel-release # rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm # 先安装下依赖 yum install -y wget gcc gcc-c++ autoc ...
分类:Web程序   时间:2020-07-03 12:25:34    阅读次数:56
434. Number of Segments in a String
Count the number of segments in a string, where a segment is defined to be a contiguous sequence of non-space characters. Please note that the string ...
分类:其他好文   时间:2020-07-03 10:41:10    阅读次数:59
搭建php环境
此博客链接: 下载链接:https://www.php.net/downloads.php 步骤 1)下载 下载安全的压缩包 ...
分类:Web程序   时间:2020-07-03 00:59:08    阅读次数:79
Oracle 数据库坏块处理
情形一,有RMAN备份 1.构造坏块 SQL> select segment_name , header_file , header_block,blocks 2 from dba_segments where segment_name ='TESTC' and owner='SCOTT'; SEG ...
分类:数据库   时间:2020-07-02 16:38:57    阅读次数:62
webpack-dev-server使用方法
记录下webpack-dev-server的用法. 首先,我们来看看基本的webpack.config.js的写法 module.exports = { entry: './src/js/index.js', output: { path: './dist/js', filename: 'bundl ...
分类:Web程序   时间:2020-07-02 16:20:47    阅读次数:98
centos 8 安装zabbix4.5
1安装mariadb数据库 1. 配置阿里云源 参考链接: https://developer.aliyun.com/mirror 2. 使用阿里云源安装mariadb dnf -y install mariadb-server mariadb-client 1.1 .1 使用systemctl进行 ...
分类:其他好文   时间:2020-07-02 13:36:20    阅读次数:68
Oracle11g空表导出设置
alter system set deferred_segment_creation=false; select 'alter table '||table_name||' allocate extent;' from user_tables where segment_created='NO' 处 ...
分类:数据库   时间:2020-07-01 20:14:12    阅读次数:63
【kafka】kafka内核原理
基础概念 正所谓工欲善其事,必先利其器。我们先来了解一下kafka的基础构成。 producer 消息生产者,发布消息到kafka集群的终端或服务。 broker kafaka集群中包含的服务器 topic 每条发布到kafka集群的消息属于的类别,即kafka是面向topic的。 partitio ...
分类:其他好文   时间:2020-07-01 14:24:04    阅读次数:73
4470条   上一页 1 ... 21 22 23 24 25 ... 447 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!