摘要:
##通过服务yaml文件配置 kind: Deployment .... spec: .... spec: hostAliases: - ip: "120.26.68.89" hostnames: - "asrexz.exiaozhi.com" 阅读全文
摘要:
#需要用到四层负载。首先确定你的nginx支持四层负载。确定开启stream模块 [root@test-node5 conf.d]# nginx -V configure arguments: --prefix=/usr/local/nginx --with-http_ssl_module --wi 阅读全文
摘要:
[root@lecode-pre74 ~]# setenforce 0 setenforce: SELinux is disabled [root@lecode-pre74 ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux 阅读全文
摘要:
导出sql文件可以使用mysqldump。主要有如下几种操作: 导出整个数据库(包括数据库中的数据): mysqldump -h主机 -u username -ppassword dbname > dbname.sql; 导出数据库中的数据表(包括数据表中的数据): mysqldump -h主机 - 阅读全文