全部文章
一文了解 Kubernetes
Docker 虽好用,但面对强大的集群,成千上万的容器,突然感觉不香了。这时候就需要我们的主角 Kubernetes 上场了,先来了解一下 Kubernetes 的基本概念,后面再介绍实践,由浅入深步步
Docker 镜像制作教程:针对不同语言的精简策略
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/767895?spm=a2c6h.128735
VUE3组件传值方式
Vue父子组件之间的通信父子组件之间不能相互访问data内容
父传子
// 在子组件中声明// props:['name1', 'name2' ....], 数组和对象props: { msg:{ type:String,
Vue3父子组件之间的访问方式
子组件调用父组件的方法:$parent 或 $root父组件调用子组件的方法:$children 或 $refs子访问父one() { console.log('这是子组件中的one()') this.$parent.changen(); /
Linux服务器配置ulimit的常用参数介绍
最近在小鸟云配置了一个Linux服务器,实例是debian 7.5 系统,在进行系统优化的过程中遇到一些有关Ulimit的事项,整理了相关的参数介绍和配置介绍,有需要可以简单看看。Ulimit常用
如何在 Ubuntu 20.04 上安装 Nginx
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/759280?spm=a2c6h.128735
如何在 Ubuntu 20.04 上安装 Visual Studio Code
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/759454?spm=a2c6h.128735
CentOS8 如何安装图形界面
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/759459?spm=a2c6h.128735
如何使用 Docker 进行编译和开发
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/759478?spm=a2c6h.128735
Kubernetes 部署 MySQL 集群
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/760332?spm=a2c6h.128735
如何在 Ubuntu 20.04 上安装 Apache
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/760324?spm=a2c6h.128735
如何在 Ubuntu 20.04 上安装 Node.js 和 npm
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/760687?spm=a2c6h.128735
CentOS 7 执行 yum 命令失败问题的排查方法
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/761306?spm=a2c6h.128735
ubuntu 18.04 如何设置开机自动启动脚本
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/761346?spm=a2c6h.128735
Ubuntu 实例中添加 swap 分区的方法
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/761531?spm=a2c6h.128735
使用 docker buildx 构建多 CPU 架构镜像
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/761569?spm=a2c6h.128735
如何在 Ubuntu 20.04 上安装 MariaDB
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/761741?spm=a2c6h.128735
如何在 Ubuntu 20.04 上添加交换空间
原文链接:https://developer.aliyun.com/article/762355?spm=a2c6h.12873581.0.0.484f7e46SbqQDx本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_co
Linux 下搭建 AliOS-Things 开发环境
本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_content=g_1000307095 】原文链接:https://developer.aliyun.com/article/756592?spm=a2c6h.128735
为 SOFABoot 配置 JDK 和 Maven 环境
原文链接:https://developer.aliyun.com/article/757957?spm=a2c6h.12873581.0.0.484f7e46SbqQDx本文来自于【阿里云官方镜像站:https://developer.aliyun.com/mirror/?utm_co
类的自动加载
类与面向对象编程
创建类: 用Class关键字声明成员属性前必须要有访问修饰符:public, protected, private;
<!-- 自动加载器 -->

<?php/** * 类的自动加载器 前提 类名称跟
DOM 节点的克隆和导入
前言在使用 JS 操作 DOM 节点的时候,我们常常会用到克隆(或导入)节点的操作,那到底有哪些方法可以实现节点克隆(或导入)的效果呢?
今天,我们就来总结一下能实现节点克隆(或导入)效果
【北亚数据恢复】raid6磁盘阵列硬盘故障掉线导致上层虚拟机数据丢失的数据恢复案例
环境:16块硬盘组成的raid6磁盘阵列。
故障:磁盘阵列中有一块硬盘因为物理故障掉线,导致虚拟机无法正常使用,部分分区丢失。管理员重启服务器后发现上层数据依然不在,联系北亚数
php 判断当前日期是否是每个月的第一天
<?phpfunction getthemonth($date){ $firstday = date('Y-m-01', strtotime($date)); $nowday = date('Y-m-d', strtotime($date)); $lastday = date('Y-m-d', str
Ubuntu21.10配置Grafana镜像
Grafana镜像简介Grafana是一个跨平台的开源的度量分析和可视化工具,可以通过将采集的数据查询然后可视化的展示,并及时通知。参考阿里云官方镜像站:https://developer.aliyun.c