GaGa's Blog

One GaGa, One World !

在当下,容器化大行其道的背景下,越来越多的服务及架构往容器化迈进,对数据库容器化也是在不断的演进中

Read more »

在最近的操作中发现一些上传的文件有乱码,更改几次都无法正常转换到中文


根据inode num删除

1.使用 ls -i 或者 ls -inum 查找出文件id号(红色字体)
[root@localhost home]# ls -i
260615 epel-release-latest-6.noarch.rpm 273780 test.txt

[root@localhost home]# ls -inum
273780 test.txt, 260615 epel-release-latest-6.noarch.rpm


2.结合find命令删除
[root@localhost home]# find -inum 273780 -exec rm -rf {} \;
epel-release-latest-6.noarch.rpm
删除成功
Read more »

linux上修改下环境变量,结果阴沟里翻车了,变量名字还存在约束。


问题

-bash: export: `PY-ENV=/home/bang/.virtualenvs/python-dev/bin': not a valid identifier

#变量定义
JAVA_HOME  //早期习惯性写,也没出现问题,这次_ -> -结果翻车了
JAVA-HOME  //不是有效的变量标识
Read more »

在openeuler-20.03-sp3上使用kubeadm不是k8s-v1.16.15,cni使用flannel组件


env

  • kubernetes-v1.16.15
  • docker-19.03.x
  • euler20.03.sp3(centos8.4.x)
  • kernnel-v4.18+
  • flannel-0.13
Read more »

iphone在store的app根据国际限制上架,想下载美区、港区的app必须切换store账户才可以

Read more »

搜集rhel/centos发行版本信息,为了解决异常棘手的问题提供日志

A set of tools to gather troubleshooting information from a system

Read more »

根据应用服务日志显示”No reachable node in cluster”,本质原因是服务器ip发生变化导致的

Read more »
0%