摘要:
--1、创建登录名CREATE LOGIN test_user WITH PASSWORD = 'TEST1234!@#$'; --2、创建数据库用户并关联登录名CREATE USER test_user FOR LOGIN test_user; --3、设置视图View1、View2、View3权 阅读全文
摘要:
以7.16.2为例(版本保持一致) ES: https://www.elastic.co/cn/downloads/past-releases/elasticsearch-7-16-2 Kibana: https://www.elastic.co/cn/downloads/past-releases 阅读全文
摘要:
文件../config/kibana.yml中修改 en 英语 zh-CN 中文 阅读全文
摘要:
methods: { handleSync() { this.$confirm({ title: this.$t('Confirm2SyncMessage'), //提示内容 okText: this.$t('Confirm-OK'), //确定按钮文字 cancelText: this.$t('C 阅读全文
摘要:
Step1: 首先在对象类File中根据名称找到ID; Step2: 右键文件 --> Share --> Copy ID; Step3: 在Console中输入下命令: top.aras.IomInnovator.getFileUrl("[文件ID]", top.aras.Enums.UrlTyp 阅读全文
摘要:
1. git rm -r --cached . 2. git add . 3. git commit -m "update .gitignore" 4. git push origin [远程分支名] 阅读全文
摘要:
1 using xxx.Core.Entity; 2 using Newtonsoft.Json; 3 using Newtonsoft.Json.Linq; 4 using System; 5 using System.Collections.Generic; 6 using System.Con 阅读全文
摘要:
1、先将服务关掉: net stop mysql 2、在命令行控制符中进入mysql安装目录的bin目录中,输入: mysqld --skip-grant-tables 3、然后输入mysql进入,并修改密码: use mysql update user set password=password( 阅读全文
摘要:
1、用VMware Workstation 16 Player安装CentOS 8环境(过程略)。 2、检查预安装的openjdk版本: rpm -qa|grep jdk 3、root用户下用yum命令卸载openjdk: yum -y remove copy-jdk-configs-4.0-2.e 阅读全文
摘要:
1、可以通过以下命令查看Docker Machine的IP地址:(默认貌似就是192.168.99.100,暂不确定) docker-machine ip 2、其实在Docker启动时已提示默认IP地址: 3、查看容器端口: 4、Navicat连接: 阅读全文