Centos6.9网卡文件正确备份方式
关于网卡备份要说明一下,正常大家都喜欢直接cp xxx xxx.bak方式进行备份文件,但是网卡文件如果这么备份会带来问题,系统也会启用以.bak备份的网卡文件,在/etc/init.d/network脚本中有下面这段内容: 系统脚本会将所有此目录下以ifcf … 阅读全文
关于网卡备份要说明一下,正常大家都喜欢直接cp xxx xxx.bak方式进行备份文件,但是网卡文件如果这么备份会带来问题,系统也会启用以.bak备份的网卡文件,在/etc/init.d/network脚本中有下面这段内容: 系统脚本会将所有此目录下以ifcf … 阅读全文
今天在使用scp内网拷贝文件时提示:
1 |
bash: scp: command not found |
开始以为是没有安装scp包 于是安装scp,scp属于openssh-clients包
1 |
yum install openssh-clients |
但 … 阅读全文
在centos6.9系统中编译安装redis3.2.9版本 1、安装所需依赖
1 |
yum -y install gcc gcc-c++ wget |
2、下载redis3.2.9源码包
1 2 |
cd /usr/local/src/ wget https://download.redis.io/releases/redis-3.2.9.tar.gz |
3、解压缩编译 … 阅读全文
从Centos7开始默认使用firewall防火墙了 换成iptables防火墙,操作步骤如下: 关闭firewalld防火墙,关闭开机自启
1 2 |
systemctl stop firewalld.service systemctl disable firewalld.service |
安装iptables防火墙,设置开机自启 [cray … 阅读全文
效果图 佛祖地址:https://down.whsir.com/downloads/fz.txt github地址:https://github.com/abcfy2/motd ~微信打赏~ 赏
使用yum时一直提示下面的信息
1 2 3 4 5 6 7 8 9 |
Loaded plugins: fastestmirror Repository base is listed more than once in the configuration Repository updates is listed more than once in the configuration Repository extras is listed more than once in the configuration Repository centosplus is listed more than once in the configuration Repository contrib is listed more than once in the configuration Cleaning repos: base extras updates Cleaning up Everything Cleaning up list of fastest mirrors |
原来系统是CentOS6.8,yum update后开始一直报这个了,后来经过查找发现,系统已经升级到了Centos6.9,升级后在/etc/yum.repos. … 阅读全文
nginx禁止指定目录运行php,只需要在server配置段中增加个location规则就可以了。 1、禁止某一个目录执行php
1 2 3 4 |
location ~* ^/download/.*\.(php|php5)$ { deny all; } |
2、禁止多个目录执行php [crayon-6742a2393b … 阅读全文
当前使用环境Centos6.9 mydumper是针对mysql数据库备份的一个轻量级第三方的开源工具,备份方式为逻辑备份,支持多线程,备份速度要比mysqldump快的多。 安装所需依赖 [crayon-6742a2393c1d67204201 … 阅读全文
同步所用到的两个程序 cwRsyncClient和cwRsyncServer cwRsyncServer下载地址:https://down.whsir.com/downloads/cwRsyncServer_4.0.5_Installe.zip cwRsync … 阅读全文
linux下在终端环境下可以使用free命令看到系统实际使用内存的情况,一般用free -m方式查看内存占用。 间隔显示free 可以使用-s选项,跟上间隔的秒数,例如每3秒统计一次内存使用率,free -ms 3 以MB单位显示内存,free -h 参数解释 … 阅读全文