码迷,mamicode.com
首页 >  
搜索关键字:restart    ( 3392个结果
mysql8.0.22忘记密码和重置
步骤1、修改mysql配置文件 [root@localhost ~]# vi /etc/my.cnf 在底部添加一行 skip-grant-tables 保存退出 重启mysql [root@localhost ~]# systemctl restart mysqld 步骤2、将root密码置空 [ ...
分类:数据库   时间:2021-02-22 12:44:28    阅读次数:0
properties 插件安装
在eclipse中安装properties插件PropertiesEditor及设置(附图),ASCII码转换成中文安装成功后ASCII还是不能转换成中文的,原因是设置里面没有把编码设置为utf8的,直接在文件里面设置不行,需要全局设置的才起作用。 在线编码转换ASCII<->Nativehttp: ...
分类:其他好文   时间:2021-02-19 13:47:51    阅读次数:0
Docker安装MySQL8和配置远程访问
1. 环境准备 创建挂载数据目录和配置文件 mkdir -p /opt/mysql/data /opt/mysql/conf touch /opt/mysql/conf/my.cnf 2. 拉取镜像 docker pull mysql 3. 启动容器 docker run --restart=alw ...
分类:数据库   时间:2021-02-15 12:34:37    阅读次数:0
Spring未授权REC利用方式四(env接口/h2 database query RCE)
一、漏洞成因 env接口暴露 使用h2 database 依赖 二、利用条件 env接口 restart接口 存在 com.h2database.h2 依赖 三、漏洞确认 访问env接口,查看是否存在h2 database相关依赖 四、漏洞复现 1. 访问env接口post传参,记得添加conten ...
分类:数据库   时间:2021-01-30 11:53:58    阅读次数:0
winfrom中Application.Restart()
System.Windows.Forms.Application.Restart();方法系统实现自动重启。 if (FrmDialog.ShowDialog(this, "确定退出登录吗?", "提示", false, false, false, null, DialogType.YesNo) = ...
分类:移动开发   时间:2021-01-22 11:52:41    阅读次数:0
Docker 命令大全
容器生命周期管理 run start/stop/restart kill rm pause/unpause create exec 容器操作 ps inspect top attach events logs wait export port 容器rootfs命令 commit cp diff 镜像 ...
分类:其他好文   时间:2021-01-20 11:47:15    阅读次数:0
Docker学习(十二)- docker start/stop/restart 命令详解
作用 docker start:启动一个或多个已经被停止的容器 docker stop:停止一个或多个运行中的容器 docker restart:重启一个或多个容器 语法格式 docker start [OPTIONS] CONTAINER [CONTAINER...] docker stop [O ...
分类:其他好文   时间:2021-01-19 12:15:41    阅读次数:0
ubuntu ssh连不上
1、检查防火墙是否开放22端口 2、检查ssh是否安装 rpm -qa |grep ssh sudo apt-get install rpm sudo apt-get install ssh sudo service ssh restart 连接成功 安装ssh 参考: https://blog.c ...
分类:系统相关   时间:2021-01-14 11:27:11    阅读次数:0
Docker 换国内源
Docker 换国内源 先创建daemon.json文件,系统默认是没有这个文件。 sudo vim /etc/docker/daemon.json 复制代码 编辑daemon.json,填入以下内容。 { "registry-mirrors": [ "https://kfwkfulq.mirror ...
分类:其他好文   时间:2021-01-13 11:24:55    阅读次数:0
Linux 修改 ssh 端口
edit config && add Port 2222 vi /etc/ssh/sshd_config 重启ssh服务 systemctl restart sshd.service 查看端口 sudo netstat -atlunp | grep sshd ...
分类:系统相关   时间:2021-01-13 10:51:14    阅读次数:0
3392条   上一页 1 ... 6 7 8 9 10 ... 340 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!