上一页 1 ··· 6 7 8 9 10 11 12 下一页

centos7配置vsftpd

摘要: ftp服务器192.168.1.198 1、关闭selinux、关闭防火墙 2、yum -y install vsftpd* 3、开启服务,通过浏览器访问ftp://192.168.1.198,匿名用户可以访问并下载pub下文件。 4、配置匿名用户允许上传下载等操作vi /etc/vsftpd/vs 阅读全文
posted @ 2018-09-20 15:37 狄成 阅读(914) 评论(0) 推荐(0)

vsftpd上传文件出现553 Could not create file错误解决方法

摘要: 1、确定目录权限 2、关闭selinux 阅读全文
posted @ 2018-09-17 16:45 狄成 阅读(1105) 评论(0) 推荐(0)

mysql表引擎myisam改为innodb

摘要: 1、进入数据库 2、SELECT CONCAT('ALTER TABLE `', table_name, '` ENGINE=InnoDB;') AS sql_statements FROM information_schema.tables AS tb WHERE table_schema = ' 阅读全文
posted @ 2018-08-06 14:10 狄成 阅读(1761) 评论(0) 推荐(0)

python字符串

摘要: isdigit() 判断字符串是否由数字组成 join() 返回通过指定字符连接序列中元素后生成的新字符串 阅读全文
posted @ 2018-07-26 16:45 狄成 阅读(140) 评论(0) 推荐(0)

linux虚拟机设置本地yum源

摘要: 1、挂载ISO镜像 2、创建文件夹,用于挂载光盘,mkdir /mnt/cdrom mount /dev/cdrom /mnt/cdrom 3、修改 repo 文件 baseurl=file:///挂载光盘的文件夹 gpgcheck=0 关闭 enabled=1 开启 阅读全文
posted @ 2018-06-20 11:22 狄成 阅读(1401) 评论(0) 推荐(1)

python3读取excel数据

摘要: import xlrd worksheet = xlrd.open_workbook('XXXX.xlsx') #打开excel文件 sheet_names= worksheet.sheet_names() #获取excel中所有工作表名 sheet2 = worksheet.sheet_by_na 阅读全文
posted @ 2018-06-06 15:17 狄成 阅读(9283) 评论(0) 推荐(0)

expect远程登录服务器并执行命令

摘要: #!/usr/bin/expectset timeout 120 #设置执行超时时间,任何输入120秒后退出set password "password" #set设置password名,值为passwordspawn ssh -p 端口 root@ip #连接用户主机账号expect "*pass 阅读全文
posted @ 2018-06-05 15:13 狄成 阅读(878) 评论(0) 推荐(0)

sed中支持变量的处理方法

摘要: 1.eval sed ’s/$a/$b/’ filename2.sed "s/$a/$b/" filename3.sed ’s/’$a’/’$b’/’ filename 4.sed s/$a/$b/ filename 第一种eval sed -i 's!gcomm://!gcomm://$IP_2! 阅读全文
posted @ 2018-06-05 14:48 狄成 阅读(9030) 评论(0) 推荐(0)

monit安装配置

摘要: 环境centos5(32bit),monit-5.17.1,下载地址 https://bitbucket.org/tildeslash/monit/downloads/ 1、tar zxvf monit-5.17.1-linux-x86.tar.gz 2、cp monit-5.17.1/conf/m 阅读全文
posted @ 2018-05-24 17:57 狄成 阅读(541) 评论(0) 推荐(0)

php新加扩展模块

摘要: 记录下在已经编译安装的PHP上面增加扩展模块,下面以安装mbstring.so为例 1、进入PHP源码文件中的mbstring文件夹,一般都是在ext目录 cd php-5.5.29/ext/mbstring/ 2、找到phpize文件执行,如不知道安装在哪里,可以使用find命令查找 3、执行完p 阅读全文
posted @ 2018-05-15 10:34 狄成 阅读(110) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 下一页