1、初始化数据库的时候报错 error while loading shared libraries: libstdc++.so.5: cannot open shared object file: No such file or directory 是因为libstdc++.so.5没有装yum ...
分类:
数据库 时间:
2020-06-08 00:19:25
阅读次数:
134
安装mysql yum repository wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm yum -y install mysql57-community-release-el7-10 ...
分类:
数据库 时间:
2020-06-07 21:16:49
阅读次数:
97
本人使用的是CentOS 6.2 64位系统,由于在安装系统的时候并没有勾选安装gcc编译器,因此需要自行安装gcc编译器。 系统信息查看命令: cat /etc/redhat-release 使用yum安装gcc 对于配备了yum的Linux发行版而言,安装gcc编译器就变得so easy。我们只 ...
分类:
系统相关 时间:
2020-06-07 19:45:25
阅读次数:
78
安装docker及在docker中安装python环境学 实验环境:CentOS 7 前提条件: CentOS 系统的内核版本要高于 3.10 可通过uname -r命令查看验证: 安装一些系统工具: $ yum install -y yum-utils device-mapper-persiste ...
分类:
编程语言 时间:
2020-06-07 19:38:45
阅读次数:
134
安装minikube 1、本地下载kubectl # 1 配置k8s的yum ,将kubernetes.repo添加到/etc/yum.repos.d中 [kubernetes] name=Kubernetes baseurl=http://mirrors.aliyun.com/kubernetes ...
分类:
其他好文 时间:
2020-06-07 15:00:14
阅读次数:
92
方案一 curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py | python get-pip.py 方案二 yum -y install epel-release yum -y install python-pip ...
分类:
其他好文 时间:
2020-06-07 14:54:48
阅读次数:
51
1:安装计算服务软件包: [root@controller01 ~]# yum install openstack-nova-compute -y 2:编辑计算配置文件配置文件: [vnc]enabled = Trueserver_listen = 0.0.0.0server_proxyclient ...
分类:
其他好文 时间:
2020-06-07 14:45:31
阅读次数:
78
用Windows上写了一个脚本,结果放到虚拟机上运行的时候出现了一个错误:** $'\r': command not found **。 错误的原因是linux系统的换行符是\n,而Windows里的换行符是\r\n。 解决方法: 安装一个命令:dos2unix yum install dos2un ...
分类:
系统相关 时间:
2020-06-07 11:11:02
阅读次数:
73
安装三个必要依赖包yum install gcc zlib-devel openssl-devel上传安装包,创建一个/tmp目录下,然后解压,将/etc/ssh/目录移动到本地解压安装包,进入安装目录./configure --prefix=/usr --sysconfdir=/etc/ssh卸载 ...
分类:
其他好文 时间:
2020-06-07 11:03:21
阅读次数:
380
wget下载:http://nginx.org/download/nginx-1.6.2.tar.gz 进行安装:tar -zxvf nginx-1.6.2.tar.gz -C /usr/local/ 下载所需要的依赖库文件: yum install pcre yum install pcre-de ...
分类:
其他好文 时间:
2020-06-07 11:03:09
阅读次数:
60