摘要:
https://www.bugdone.cn 阅读全文
摘要:
1.查看当前系统语言:echo $LANG 2.查看语言包:locale 3.下载语言包:yum groupinstall chinese-support 4.临时更换linux系统语言环境:LANG=zh_CN.UTF-8 关闭防火墙 systemctl disable firewalld sys 阅读全文
摘要:
1.安装redis weget http://download.redis.io/releases/redis-3.2.6.tar.gz 解压并移动到自定义的一个文件夹中(/software/redis) 解压命令 tar -zxvf 文件名 移动命令 mv 当前文件夹 目标文件夹 最终结构: /s 阅读全文
摘要:
查看与配置binlog格式 1.查看binlog_format 进入mysql show variables like 'binlog_format' 修改binlog日志格式 修改配置文件 vim /etc/my.conf 把binlog_format=ROW改成binlog_format=MIX 阅读全文
摘要:
1.下载地址 https://fastdl.MongoDB.org/Linux/mongodb-linux-x86_64-3.4.7.tgz 2.创建目录,并在目录下解压 mkdir /mongodb /mongodb/mongodb-linux-x86_64-3.4.7 3.配置 etc/prof 阅读全文
摘要:
查找文件 find / -name '*ifcfg*' -print 查找目录 find / -name 'ban*' -type d 阅读全文
摘要:
在/etc/sysconfig/network-scripts 中更改ifcfg-ens33配置文件 TYPE="Ethernet" BOOTPROTO=static DNS1=8.8.8.8 IPADDR=10.0.10.88 NETMASK=255.255.255.0 GATEWAY=10.0. 阅读全文