摘要: #!/bin/bash dirdate=`date +%Y%m%d` mkdir $dirdate 添加定时任务 crontab -e * 24 * * * /root/date.sh wq 保存 阅读全文
posted @ 2019-09-03 18:35 hanjianfei 阅读(4201) 评论(0) 推荐(0) 编辑
摘要: 防火墙: systemctl stop firewalld systemctl disable firewalld systemctl list-unit-files | grep firewalld ftp服务 启动ftp和开机自启动命令 /bin/systemctl start vsftpd.service systemctl enable vsftpd.service ps -ef |... 阅读全文
posted @ 2019-09-03 18:11 hanjianfei 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 首先Oracle官网下载安装包: http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html 安装解压缩到/usr/local/oracle mkdir /usr/local/oracle unzip /usr/local/oracle/instantclient-basic-linux. 阅读全文
posted @ 2019-09-03 16:22 hanjianfei 阅读(19349) 评论(0) 推荐(0) 编辑
摘要: 检查是否安装expect which expect 如果没有安装, yum install expect -y vi distribute_file.sh #!/usr/bin/expect -f #chmod 777 distribute_file.sh password= path=$1 topath=$2 while read -r ipline do expect<<-END spawn 阅读全文
posted @ 2019-09-03 15:32 hanjianfei 阅读(244) 评论(0) 推荐(0) 编辑