When you run hexo g on any web instances, like on AWS or Azure, you might get the following error: (node:3568) ExperimentalWarning: The fs.promises AP ...
分类:
其他好文 时间:
2021-04-12 12:28:51
阅读次数:
0
用JAVA实现一个时钟 用图形库绘制表盘,然后用事件处理机制刷新窗口,反复重绘,让表针转动起来 import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.awt.geom.*; import java. ...
分类:
编程语言 时间:
2021-04-12 12:27:35
阅读次数:
0
service mysql start 启动MySQL 1、出现报错The server quit without updating PID file... 1.1.可能是/usr/local/mysql/data/rekfan.pid文件没有写的权限 #执行: chown -R mysql:mys ...
分类:
数据库 时间:
2021-04-12 12:16:04
阅读次数:
0
打开vi /etc/selinux/config, 设置 SELINUX=disabled yum grouplist yum groupinstall "GNOME Desktop" "Graphical Administration Tools" 安装epel库 yum -y install e ...
1. pom.xml Maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-mongodb</artifactId> </dependency> 2. ...
分类:
数据库 时间:
2021-04-10 13:33:58
阅读次数:
0
现象: 执行 lsnrctl start 来启动 listener,却失败了。 $ lsnrctl stat LSNRCTL for Linux: Version 19.0.0.0.0 - Production on 09-APR-2021 23:45:02 Copyright (c) 1991, ...
分类:
数据库 时间:
2021-04-10 13:32:17
阅读次数:
0
<?php session_start(); // $_SESSION['login']=11; echo $_SESSION['login']; ?> <?php // var_dump($_GET); echo '<br/>'; $username=$_GET['username']; $pas ...
分类:
Web程序 时间:
2021-04-10 13:29:04
阅读次数:
0
安装的mysql每次重启后报错 ################################################### Redirecting to /bin/systemctl start mysql.service Job for mysqld.service failed be ...
分类:
数据库 时间:
2021-04-10 12:57:00
阅读次数:
0
LIKE中和如何匹配通配符本身 LIKE中使用%和_作为通配符是常用操作,但是如果想要文本中的%和_怎么办? 解决:在前面加上\ 即可 -- 验证匹配文本中的_ SELECT case when 'event_sadfad' like '%\_%' then 1 else 0 end -- retu ...
分类:
数据库 时间:
2021-04-10 12:50:47
阅读次数:
0
解决方式:把图标缓存的数据库删除 一、 第一步:win+r cmd进入命令行 第二步:一行一行键入如下命令 taskkill /im explorer.exe /f cd /d %userprofile%\appdata\local del iconcache.db /a start explore ...
分类:
其他好文 时间:
2021-04-09 13:41:00
阅读次数:
0