[root@es02-010007081131 dumpbackup]# more /home/script/backup/mysql_dumpbackup.sh #!/bin/bash . /etc/profile . ~/.bash_profile backup_date=`date "+%Y% ...
分类:
数据库 时间:
2021-06-24 18:11:54
阅读次数:
0
jenkins部署vue项目 安装nodejs 配置nodejs的源,去官网查看需要安装的版本和介绍 V8.x: # curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - yum安装node.js yum ins ...
分类:
其他好文 时间:
2021-06-23 17:07:38
阅读次数:
0
Linux Nginx日志切割脚本 版本 操作系统版本IP版本 Centos 172.21.3.220内网 7.x Nginx日志切割脚本 #!/bin/bash #设置日志文件存放目录 logs_dir="/usr/local/nginx/logs" store_dir="/data/backup ...
分类:
系统相关 时间:
2021-06-23 17:02:55
阅读次数:
0
创建编写 build.sh 脚本文件,内容如下: #!/usr/bin/env bash # # Generated by: https://github.com/swagger-api/swagger-codegen.git # frameworkVersion=net40 # sdk must ...
分类:
其他好文 时间:
2021-06-22 18:25:47
阅读次数:
0
前提是在码云上已经新建一个空的项目,可参考:https://www.cnblogs.com/babysbreath/p/9170455.html 1、新建一个目录,存放下载下来的项目,我在D盘新建了一个“gitspace”文件夹,用来存放下载下来的项目 2、进入刚刚新建的文件夹,即进入“gitspa ...
分类:
Web程序 时间:
2021-06-21 21:08:29
阅读次数:
0
预备条件: 注册 heroku.com ;注册github ,新建公共或私人repository; 安装git bash; 1、复制git 链接(如果是https格式的,每次签入项目时会要求输入github的用户名和密码,如果选择SSH格式,每次签入push时不需要输入信息,但是事先在电脑上保存SS ...
分类:
其他好文 时间:
2021-06-21 20:25:11
阅读次数:
0
#!/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
简单设置环境变量,以及密码 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
脚本位置 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
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