上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 18 下一页
摘要: Linux 系统优化 关闭SELinux [root@workstation ~]# sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/selinux/config [root@workstation ~]# setenforce 0 [roo 阅读全文
posted @ 2020-12-02 13:04 Gshelldon 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Linux 系统优化 1、修改ip地址、网关、主机名、DNS等 在服务器集群中装好操作系统做的第一件事就是,配置好网络,DNS可以根据服务器是否连接外网设定。 2、关闭selinux,清空iptables 在CentOS7 的系统中加入了firewalld,关闭之后在调试业务有帮助,如果有需求可以在 阅读全文
posted @ 2020-12-02 13:03 Gshelldon 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 1.客户端与服务端模型 1)数据是一个典型的C/S结构的服务 1.mysql自带的客户端工具 mysql mysqladmin mysqldump 3.mysql是一个二进制程序,后台守护进程 单进程 多线程 2)mysql的连接方式 1.TCP/IP连接 2.socket连接 #tcp/ip连接 阅读全文
posted @ 2020-12-02 13:02 Gshelldon 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 1.不小心删除了mysql所有用户 mysql> delete from mysql.user where 1=1; Query OK, 5 rows affected (0.00 sec) #删除用户以后还是可以登陆,但是不要重启 2.解决方式一: 1)停止数据库 #抽根烟冷静一下 [root@d 阅读全文
posted @ 2020-12-02 13:01 Gshelldon 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-12-02 12:59 Gshelldon 阅读(80) 评论(0) 推荐(0) 编辑
摘要: mysql 安装 1.安装方式 1.二进制安装 2.源码包安装 3.rpm包安装 1.二进制安装 1)上传或者下载包 [root@db01 ~]# rz #或者 [root@web01 ~]# wget https://downloads.mysql.com/archives/get/p/23/fi 阅读全文
posted @ 2020-12-02 12:54 Gshelldon 阅读(265) 评论(0) 推荐(0) 编辑
摘要: named piped tcp proxy 下载 piped下载 阅读全文
posted @ 2020-11-20 15:32 Gshelldon 阅读(3085) 评论(0) 推荐(1) 编辑
摘要: 背景 :在日常工作中一个基于centos镜像构建起来的python爬虫程序,日志文件在两个月内到了500G,日志存放在根目录下面,在不扩容的情况下把这个问题给解决掉。通过定时任务和脚本的方法,定期的清理容器里面的日志文件。脚本的核心命令: docker exec -i a62927a71762 fi 阅读全文
posted @ 2020-11-04 11:20 Gshelldon 阅读(1199) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # 先备份原来的网卡配置文件 find /etc/sysconfig/network-scripts/ -type f -name "ifcfg*"|xargs cp -t /tmp # 定义要使用的变量 network_file_path=/etc/sysconfig/ne 阅读全文
posted @ 2020-10-21 12:55 Gshelldon 阅读(502) 评论(0) 推荐(0) 编辑
摘要: cnetos 网卡绑定 eth0+eth1做双网卡绑定 ​ 需要说明的是如果想做成mode 0的负载均衡,仅仅设置这里options bond0 miimon=100 mode=0是不够的,与网卡相连的交换机必须做特殊配置(这两个端口应该采取聚合方式),因为做bonding的这两块网卡是使用同一个M 阅读全文
posted @ 2020-10-21 10:11 Gshelldon 阅读(1149) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 18 下一页