MySQL开启远程访问权限 1、切换数据库 use mysql; 2、给root用户分配远程访问权限 grant all privileges on *.* to 'root'@'%'; #创建数据库用户dmsTest,并授予远程连接权限。 create user 'dmsTest'@'%' identified by 'Ecs@12…
在Debian 11 环境下执行curl命令,提示: -bash: curl: command not found 解决方案: 1、升级系统 sudo apt update && sudo apt upgrade nat机没有sudo,可以省略sudo,后续同理,即 apt update && apt upgrade…
存储引擎 查看建表语句:show create table 表名; 查看当前数据库支持的存储引擎 show engines; -- 1、在创建表时,指定存储引擎 -- 查看当前数据库支持的存储引擎 show engines; -- 查看建表语句 show create table account; -- 创建表 my_syisam, 并指定myis…
Centos/Ubuntu/Debian安装命令 独立运行环境(py3.7) curl -sSO https://raw.githubusercontent.com/8838/btpanel-v7.7.0/main/install/install_panel.sh && bash install_panel.sh 备用安装链接,适用…
Debian 11 安装 curl 若提示:-bash: curl: command not found 升级系统 sudo apt update && sudo apt upgrade 执行安装curl sudo apt install curl 或者 sudo apt-get install curl 一键安装3x-ui bas…
基础 DDL 数据定义语言 []:表示可选 1、DDL-数据库操作 show databases; create database 数据库名; user 数据库名; select database(); drop database [if exit] 数据库名; 2、DDL-表操作 show tables; create table 表名(...)…
容器命令 -d:后台运行容器并返回容器ID,也即启动守护式容器(后台运行) -i:以交互模式运行容器,通常与-t同时使用; -t:为容器重新分配一个伪输入终端,通常与-i同时使用; -P 创建并运行Docker的ubuntu交互式,即进入ubuntu容器内部 docker run -it ubuntu /bin/bash 或者,其中--name为容…