随笔 - 240  文章 - 0  评论 - 8  阅读 - 13万

随笔分类 -  linux

1 2 下一页
linux http压力测试工具ab
摘要:yum -y install httpd-tools ab -n 1000 -c 100 -p ~/postfile -T application/x-www-form-urlencoded http://192.168.0.102:8080/test/test ab -n 1000 -c 100 阅读全文
posted @ 2023-09-03 08:50 biind 阅读(109) 评论(0) 推荐(0) 编辑
linux 防火墙相关命令
摘要:主机名vim /etc/hostnamenode1.itcast.cnnode2.itcast.cn Hosts映射vim /etc/hosts192.168.0.140 node1 node1.itcast.cn192.168.0.141 node2 node2.itcast.cn 192.168 阅读全文
posted @ 2023-09-03 08:21 biind 阅读(11) 评论(0) 推荐(0) 编辑
linux相关命令记录
摘要:ping www.baidu.com 下载方式1wget https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png下载方式2curl -O https://www.baidu.com/img/PCtm_d9c8750bed 阅读全文
posted @ 2023-08-08 20:55 biind 阅读(29) 评论(0) 推荐(0) 编辑
docker vue dist 部署
摘要:1.准备vue打包后的dist 2.部署docker 1.准备vue打包后的dist a:1个dist目录;1个Dockerfile 文件。内容如下: FROM nginxCOPY dist/ /usr/share/nginx/html/ 说明:自动拉nginx 最新版本镜像,生成vue镜像 2.部 阅读全文
posted @ 2023-03-02 09:05 biind 阅读(353) 评论(0) 推荐(0) 编辑
docker springboot jar包部署
摘要:软件: 1.xftp 2.VM vistualBox 目录: 1.本地jar包准备 2.docker部署 1.本地jar包准备 2.docker部署 a.两个文件:jar + Dockerfile Dockerfile 名字唯一,只能这个取名 文件1:jar包;文件2:内容如下。 FROM open 阅读全文
posted @ 2023-03-02 07:01 biind 阅读(126) 评论(0) 推荐(0) 编辑
docker 安装 mysql redis
摘要:1.mysql 2.redis PS:熟悉基本docker使用命令 images ps pull run exec rm rmi tag push start restart stop 1.mysql #安装最新版本docker pull mysql#安装指定版本docker pull mysql: 阅读全文
posted @ 2023-03-02 06:31 biind 阅读(22) 评论(0) 推荐(0) 编辑
linux 安装 docker
摘要:docker安装 sudo yum install -y yum-utils \ device-mapper-persistent-data \ lvm2 sudo yum-config-manager \ --add-repo \ http://mirrors.aliyun.com/docker- 阅读全文
posted @ 2023-03-02 06:29 biind 阅读(19) 评论(0) 推荐(0) 编辑
linux 基础 配置ip及网络
摘要:软件: 1.VM VistualBox 2.CentOS-7-x86_64-Minimal-2009.iso 3.配置静态ip及网络 3.配置静态ip及网络 a.打开【桥接网卡】 b.配置静态ip及dns 先查看window10系统的配置(cmd->ipconfig /all),主要获取dns,如果 阅读全文
posted @ 2023-03-02 06:08 biind 阅读(109) 评论(0) 推荐(0) 编辑
dokcer Dockerfile生成jdk的镜像
摘要:#配置镜像加速vi /etc/docker/daemon.json{“registry-mirrors: ["https://docker.mirors.ustc.edu.cn"]} #安装centos7docker run -it --name=mycentos centos:7 /bin/bas 阅读全文
posted @ 2022-01-23 15:50 biind 阅读(317) 评论(0) 推荐(0) 编辑
docker 备份与迁移
摘要:#docker容器保存为镜像docker commit mysql mysql20220123docker images 可查看刚刚保存的镜像 docker stop mysqldocker rm mysqldocker run -id --name mysql -p 3306:3306 -e MY 阅读全文
posted @ 2022-01-23 11:16 biind 阅读(53) 评论(0) 推荐(0) 编辑
docker 基本使用命令
摘要:前提:linux安装 + docker安装,参考地址; linux 安装docker和mysql - biind - 博客园 (cnblogs.com) 目录: 1.docker基本使用命令 2.docker安装mysql + tomcat + nginx 1.docker基本使用命令 #查询镜像 阅读全文
posted @ 2022-01-23 07:46 biind 阅读(78) 评论(0) 推荐(0) 编辑
linux ftp安装(与windows传输文件)
摘要:1.linux安装ftp 2.windows安装:FileZilla 客户端 - FileZilla中文网 1.linux安装ftp #搜索可用的软件包yum list | grep ftp #安装yum install vsftpd #开启ftp服务service vsftpd start 看下是 阅读全文
posted @ 2022-01-21 21:33 biind 阅读(245) 评论(0) 推荐(0) 编辑
linux 安装
摘要:1.virtualBox 下载地址: Downloads – Oracle VM VirtualBox 2.centOS7 下载地址: Index of /centos/7.9.2009/isos/x86_64/ (163.com) CentOS Mirrors List 3.安装 a.安装virt 阅读全文
posted @ 2022-01-19 22:05 biind 阅读(39) 评论(0) 推荐(0) 编辑
linux 安装docker和mysql
摘要:1.安装linux VMware-workstation-full-15.0.4-12990004.exe CentOS-7-x86_64-DVD-1810.iso 2.安装SecureCRT 连接linux工具 3.安装docker及mysql 安装教程:Docker 教程 | 菜鸟教程 (run 阅读全文
posted @ 2021-12-25 12:54 biind 阅读(176) 评论(0) 推荐(0) 编辑
linux 基础 复制window文件到linux
摘要:1.下载pscp工具:地址 2.dos执行命令: pscp F:\his.rar root@192.168.3.137:/tmp/test 阅读全文
posted @ 2019-05-07 15:51 biind 阅读(2172) 评论(0) 推荐(0) 编辑
linux 基础 配置静态IP
摘要:1.查看本机windows默认网关、DNS 2.配置linux 3.查询网络配置 4.xshell 登录 一 查看本机windows默认网关、DNS 二 配置linux(注意:默认网关、dns,必须跟windows一致!) 设定ipcat /etc/sysconfig/network-scripts 阅读全文
posted @ 2019-05-07 09:14 biind 阅读(342) 评论(0) 推荐(0) 编辑
linux 基础 yum 安装
摘要:ls /dev/cdrom mkdir /mnt/cdrom mount -r /dev/cdrom /mnt/cdrom 阅读全文
posted @ 2019-05-05 21:47 biind 阅读(237) 评论(0) 推荐(0) 编辑
linux 基础 VIM 编辑器
摘要: 阅读全文
posted @ 2019-05-05 20:45 biind 阅读(115) 评论(0) 推荐(0) 编辑
linux 基础 文件操作
摘要:cat -A /etc/passwdnl -ba passwd cat -A man_db.conf more man_db.conf less man_db.conf head -n 5 /var/log/messagestail -5 /var/log/messages wc -l /etc/p 阅读全文
posted @ 2019-05-05 20:00 biind 阅读(142) 评论(0) 推荐(0) 编辑
linux 基础 ls cd 目录含义
摘要: 阅读全文
posted @ 2019-05-05 19:48 biind 阅读(188) 评论(0) 推荐(0) 编辑

1 2 下一页
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示