码迷,mamicode.com
首页 >  
搜索关键字:ansible install bash    ( 57162个结果
docker 报错,使用这个脚本安装
#!/bin/bash rm -rf /var/lib/docker yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate ...
分类:其他好文   时间:2021-06-21 19:53:25    阅读次数:0
设置MySQL密码
简单设置环境变量,以及密码 1.把mysql命令加入环境变量 [root@master01 ~]# vim /etc/profile.d/mysql.sh #!/bin/bash export MYSQL=/application/mysql export PATH=$PATH:$MYSQL/bin ...
分类:数据库   时间:2021-06-20 18:49:27    阅读次数:0
kafka集群起停脚本
脚本位置 cd /home/hadoop/bin 脚本内容 vi kafka.sh #输入以下内容 #!/bin/bash case $1 in "start" ){ for(( i = 1;i <= 3;i = $i +1));do echo hadoop0$i kafka $1 ssh hado ...
分类:其他好文   时间:2021-06-20 18:41:23    阅读次数:0
Django搭建个人博客系列: 环境准备及简单的博客系统搭建
之前的Linux环境准备工作,可以参考我之前的博客在Win10下利用VMware安装Ubuntu20.04教程。下面开始构建虚拟环境,以后写多个项目防止污染其他项目环境。 1. 创建虚拟环境 # 安装Python venv库 sudo apt-get install python3-venv # 创 ...
分类:其他好文   时间:2021-06-20 18:31:03    阅读次数:0
ntp
为什么电脑要同步时间?因为电脑自己的钟不准。破电脑一天慢五分钟也不奇怪。 对时需要对到什么精度?一般家用的电脑时钟误差一分钟完全可以接受。集群服务器配合工作一般需要所有的时钟同步在一秒之内。 和谁同步?一般是和世界各地的 NTP (Network Time Protocol)服务器同步的。米国标准时 ...
分类:其他好文   时间:2021-06-20 18:29:35    阅读次数:0
CentOS7环境变量
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
python 使用xlrd读取excel报错,xlrd.biffh.XLRDError: Excel xlsx file; not supported
xlrd 版本问题, 使用命令安装新版本xlrd即可 pip install xlrd==1.2.0 ...
分类:编程语言   时间:2021-06-20 17:56:54    阅读次数:0
ubuntu21.04(linux):用apt安装nginx/php/mysql/phpmyadmin(开发环境)
一,apt方式安装php 说明:用apt方式安装适用于本地开发环境,如果是线上生产环境,建议下载软件后编译安装 root@lhdpc:~# apt-get install php 查看结果: root@lhdpc:~# php -v PHP 7.4.16 (cli) (built: Mar 23 2 ...
分类:数据库   时间:2021-06-20 17:46:30    阅读次数:0
ART 对抗样本框架 安装记录
官方指导: https://github.com/Trusted-AI/adversarial-robustness-toolbox/wiki/Get-Started#setup 安装记录: 方法 1:使用 conda 安装 conda install -c conda-forge adversar ...
分类:其他好文   时间:2021-06-20 17:44:00    阅读次数:0
pytorch runtime error: CUDNN_STATUS_MAPPING_ERROR
pytorch runtime error: CUDNN_STATUS_MAPPING_ERROR Python 基础教程--pytorch 报错 以创建Pytorch为例 (For more information, please go to Alan D. Chen , upgrading~~) ...
分类:移动开发   时间:2021-06-19 19:30:11    阅读次数:0
57162条   上一页 1 ... 11 12 13 14 15 ... 5717 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!