上一页 1 2 3 4 5 6 7 8 9 10 ··· 35 下一页
该文被密码保护。 阅读全文
posted @ 2022-04-14 15:55 chenzechao 阅读(2) 评论(0) 推荐(0) 编辑
摘要: cat >> /etc/samba/smb.conf <<END [share] comment = share path = /data/share writable = yes END useradd share smbpasswd -a share service smb restart se 阅读全文
posted @ 2022-04-07 15:33 chenzechao 阅读(65) 评论(0) 推荐(0) 编辑
摘要: awk '{print tolower($0)}' tmpa|grep -E "from|join" |awk -F'from ' '{print $2}'|awk '{print $1}'|sort -u awk '{print tolower($0)}' tmpa|grep -E "from|j 阅读全文
posted @ 2022-03-23 09:24 chenzechao 阅读(221) 评论(0) 推荐(0) 编辑
摘要: # easyconnect for docker docker run --device /dev/net/tun --cap-add NET_ADMIN -ti -e PASSWORD=123 -v $HOME/.ecdata:/root -p 192.168.1.8:5901:5901 -p 1 阅读全文
posted @ 2022-02-26 10:47 chenzechao 阅读(265) 评论(0) 推荐(0) 编辑
摘要: # 下载并安装yum源 wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm yum localinstall mysql57-community-release-el7-7.noarch.rpm -y # 阅读全文
posted @ 2022-02-17 14:25 chenzechao 阅读(30) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-02-11 17:11 chenzechao 阅读(0) 评论(0) 推荐(0) 编辑
摘要: ### 导出化建表语句 mysql -hDB_NAME -uUSERNAME -pPASSWORD -A -N DATABASE -e " show create table table_name_01 ; show create table table_name_02 ; " > show_cre 阅读全文
posted @ 2022-01-25 15:28 chenzechao 阅读(396) 评论(0) 推荐(0) 编辑
摘要: Check binlog status -- https://github.com/alibaba/canal/wiki/AdminGuide show variables like 'log_bin'; show variables like 'binlog_format'; MySQL Binl 阅读全文
posted @ 2022-01-24 15:19 chenzechao 阅读(4443) 评论(0) 推荐(1) 编辑
摘要: ################################################### mysql serverId , v1.0.26+ will autoGen # canal.instance.mysql.slaveId=0 # enable gtid use true/fal 阅读全文
posted @ 2022-01-19 14:57 chenzechao 阅读(52) 评论(0) 推荐(0) 编辑
摘要: create table tmp_demo_01 ( id int ,name varchar(127) ,age int ) ; create table tmp_demo_02 ( id int ,name varchar(127) ) ; insert into tmp_demo_01 sel 阅读全文
posted @ 2021-12-24 10:47 chenzechao 阅读(31) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 35 下一页