上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 40 下一页
摘要: 1.修改MySQL配置 /etc/my.cnf vim /etc/my.cnf [mysqldump] user=xxx password=xxx 2.创建脚本 touch /var/www/wwwroot/dbbaks/项目名称_bak.shvim /var/www/wwwroot/dbbaks/ 阅读全文
posted @ 2021-04-24 15:30 b̶i̶n̶g̶.̶ 阅读(239) 评论(0) 推荐(0)
摘要: 一、安装步骤 1、安装yum-utils yum install -y yum-utils 2、配置阿里源 yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo 3、 阅读全文
posted @ 2021-04-24 14:54 b̶i̶n̶g̶.̶ 阅读(104) 评论(0) 推荐(0)
摘要: 1.首先在/usr/shared/fonts目录下新建一个目录chinese cd /usr/share/fonts mkdir chinese 2.拷贝windows字体到chinese目录 3.安装字体 cd /usr/share/fonts/chinese sudo dnf install f 阅读全文
posted @ 2021-04-22 13:58 b̶i̶n̶g̶.̶ 阅读(997) 评论(0) 推荐(0)
摘要: 一、安装依赖 dnf -y install automake autoconf libtool make gcc gcc-c++ dnf --enablerepo=PowerTools -y install giflib-devel dnf --enablerepo=PowerTools -y in 阅读全文
posted @ 2021-04-22 11:13 b̶i̶n̶g̶.̶ 阅读(590) 评论(0) 推荐(0)
摘要: -- -- Table structure for TestSort -- DROP TABLE IF EXISTS `TestSort`; CREATE TABLE `TestSort` ( `Id` int(0) NOT NULL AUTO_INCREMENT, `Name` varchar(3 阅读全文
posted @ 2021-04-20 10:05 b̶i̶n̶g̶.̶ 阅读(430) 评论(0) 推荐(0)
摘要: 一、全局生效 set global TRANSACTION ISOLATION level read COMMITTED; show global variables like 'transaction_isolation'; 二、当前会话生效 set session TRANSACTION ISO 阅读全文
posted @ 2021-04-06 18:13 b̶i̶n̶g̶.̶ 阅读(1074) 评论(0) 推荐(0)
摘要: 在使用left join时,on and与on where条件的区别: 1、on条件是在生成临时表时使用的条件,不管on中的条件是否为真,都会返回左边中的记录。(实际上左连接中如果and语句是对左表进行过滤的,那么不管真假都不起任何作用。如果是对右表过滤的,那么左表所有记录都返回,右表筛选以后再与左 阅读全文
posted @ 2021-03-27 17:59 b̶i̶n̶g̶.̶ 阅读(188) 评论(0) 推荐(0)
摘要: 1.设置 vim /etc/my.cnf 末尾新增 [mysqld] local-infile = 1 2.查看 SHOW GLOBAL VARIABLES LIKE '%local%'; 阅读全文
posted @ 2021-03-16 19:53 b̶i̶n̶g̶.̶ 阅读(135) 评论(0) 推荐(0)
摘要: public static string GetFileSize(string value) { if (string.IsNullOrWhiteSpace(value)) return value; var size = Convert.ToDouble(value); var units = n 阅读全文
posted @ 2021-03-09 12:04 b̶i̶n̶g̶.̶ 阅读(191) 评论(0) 推荐(1)
摘要: 一、安装依赖1.1 安装tiff、png、gif等依赖 dnf -y install automake autoconf libtool make gcc gcc-c++ dnf --enablerepo=PowerTools -y install giflib-devel dnf --enable 阅读全文
posted @ 2021-03-08 19:36 b̶i̶n̶g̶.̶ 阅读(370) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 40 下一页