- 博客(4)
- 资源 (1)
- 收藏
- 关注
原创 postgresql13安装
cetos8.0安装 postgresql13 yum install dnf sudo dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm sudo dnf -qy module disable postgresql sudo dnf install -y postgresql13-server sudo /usr/pgsql
2021-09-07 15:04:53
542
原创 记录简单使用docker
常用操作 安装 使用官方安装脚本自动安装安装命令如下: curl -fsSL https://get.docker.com | bash -s docker --mirror aliyun 也可以使用国内 daocloud 一键安装命令: curl -sSL https://get.daocloud.io/docker | sh 可以选择国内的一些源地址: 阿里云 $ sudo yum-config-manager \ --add-repo \ http://mirrors.aliyun
2021-09-07 14:58:39
186
原创 记录cetos7及windows mysql安装
安装步骤 1、下载后得到zip压缩包. 2、解压到自己想要安装到的目录,本人解压到的是D:\Mysql\mysql-5.7.33-winx64 3、添加环境变量:我的电脑->属性->高级->环境变量 选择PATH,在其后面添加: 你的mysql 安装文件下面的bin文件夹 4、编辑 my.ini 文件 ,注意替换路径位置(可选) [mysqld] # 设置3306端口 port=3306 # 设置mysql的安装目录 basedir=G:\Mysql\mysql-5.7.33-win.
2021-09-07 14:53:22
164
原创 AJAX
ajax //1.创建XMLHttpRequest() var xhr = new XMLHttpRequest() //2.建立连接 xhr.open('get', 'url', true) //3.发送请求 xhr.send() //4.处理响应结果 xhttp.onreadystatechange = function () { if(xhttp.status == 200 && xhttp.readyState == 4) { let json = JSO
2021-03-09 14:18:48
131
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅