04 2021 档案

摘要:一、前言 官网地址:https://www.postgresql.org/download/linux/redhat/ 二、安装 # Install the repository RPM: sudo dnf install -y https://download.postgresql.org/pub 阅读全文
posted @ 2021-04-24 16:46 b̶i̶n̶g̶.̶ 阅读(197) 评论(0) 推荐(0) 编辑
摘要:一、安装问题 安装时,执行 dnf -qy module disable postgresql 报错: 二、解决方案 sudo dnf install wget 阅读全文
posted @ 2021-04-24 16:34 b̶i̶n̶g̶.̶ 阅读(243) 评论(0) 推荐(0) 编辑
摘要: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̶.̶ 阅读(235) 评论(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̶.̶ 阅读(100) 评论(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̶.̶ 阅读(916) 评论(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̶.̶ 阅读(526) 评论(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̶.̶ 阅读(418) 评论(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̶.̶ 阅读(989) 评论(0) 推荐(0) 编辑