1.安装编码依赖包 nginx在linux安装的前提需要:wget、gcc、pcre、openssl、zlib [root@master ~]# yum -y install gcc gcc-c++ [root@master ~]# yum install -y pcre pcre-devel [r ...
分类:
其他好文 时间:
2021-06-21 21:09:19
阅读次数:
0
Linux 平台安装 Nginx 1.20 该博客中使?的系统为 CentOS 7 Linux 发?版 系统版本详情: Linux centos7-shanghai 3.10.0-1160.25.1.el7.x86_64 #1 SMP Wed Apr 28 21:49:45 UTC 2021 x86 ...
分类:
系统相关 时间:
2021-06-21 19:54:00
阅读次数:
0
1、CentOS7环境变量分系统环境变量和用户环境变量 系统环境变量:/etc/bashrc、/etc/profile、/etc/profile.d 推荐:/etc/profile.d 用户环境变量:~/.bash_profile、~/.bashrc 推荐:~/.bash_profile 2、查看环 ...
分类:
其他好文 时间:
2021-06-20 18:02:13
阅读次数:
0
1.下载Zookeeper 官网 使用wget下载: wget https://mirrors.bfsu.edu.cn/apache/zookeeper/zookeeper-3.7.0/apache-zookeeper-3.7.0-bin.tar.gz 2.解压资源 # 解压资源到指定目录下 tar ...
分类:
其他好文 时间:
2021-06-18 20:04:20
阅读次数:
0
我的宿机是Mint20,所有使用linux的命令启用VT-x/AMD-V linux启用方式 在宿机上执行命令列出所有虚机 ~$ VBoxManage list vms "centos7-1" {ec49b90a-fd46-402d-bce6-d73f0b889c9b} "centos7-2" {f ...
分类:
其他好文 时间:
2021-06-18 19:55:56
阅读次数:
0
在centos上最常用的定时任务服务是crond。 任务是由 cron (crond) 这个系统服务来控制的,这个系统服务是默认启动的。用户自己设置的计划任务则使用crontab命令。crond和crontab是不可分割的。 1. 安装软件服务 正常centos7自动安装crond服务及cronta ...
分类:
其他好文 时间:
2021-06-18 19:55:38
阅读次数:
0
df -h pvdisplay vgdisplay fdisk -l 查看新加卷在新磁盘创建物理卷pvcreate /dev/sdb将新磁盘添加到物理卷组vgextend rootvg /dev/sdb扩容lvmlvextend -L +2000G /dev/mapper/rootvg-rootlv ...
分类:
其他好文 时间:
2021-06-18 19:08:09
阅读次数:
0
1.卸载旧的docker,可选,如果搭建K8S平台,CentOS自带的docker会报错,因此最好使用官方最新的docker版本。 sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ dock ...
分类:
其他好文 时间:
2021-06-17 17:04:55
阅读次数:
0
配置主机名称 为了便于在局域 网中查找某台特定的主机,或者对主机进行区分,除了要有 IP 地址外,还要为主机配置一个主机名,主机之间可以通过这个类似于域名的名称来相互访问。 在 Linux 系统中,主机名大多保存在 /etc/hostname 文件中。 查看主机名 # 查找主机名 hostname ...
分类:
系统相关 时间:
2021-06-16 18:20:48
阅读次数:
0
先看看官方安装文档:https://docs.docker.com/engine/install/centos/#prerequisites,得知官方建议Centos7及以上的版本; 其他说明也非常详细,安装方法也推荐了好几种;我这里再整理一下以供学习。 Docker安装: 1、安装依赖包: sud ...
分类:
其他好文 时间:
2021-06-16 17:57:54
阅读次数:
0