Linux
frp内网穿透
frp使用内网穿透为什么要使用内网穿透?线上出问题无法排查问题的时候,我们需要时内网穿透;需要从公网访问nas;在本地搭建web服务,想发布到公网中使用。我们可以准备一台低配置的云服务器、域名、公网ip带宽可以设置高一点以便于提高访问速度,下载地址https://github.com/fatedie...
2022-01-24
k8s基础命令
Read More
kubelet命令#获取所有的node节点 后面加上 -owide可查看详细内容kubectl get node -A #获取所有的pod节点 后面加上 -owide可查看详细内容kubectl get pod -A #查看pod详情 后面加上 -owide可查看详细内容kubectl descri...
2021-04-04
linux基础命令
Read More
创建用户和用户组创建用户useradd username创建用户组groupadd groupname将用户加入到用户组useradd -g username groupname给用户添加密码用于登录linux系统给用户添加密码用的passwd命令例如passwd usernamescp命令scp命...
2021-04-04
linux-mysql5.6版本解压缩方式安装
Read More
下载mysql下载地址http://dev.mysql.com/downloads/mysql/5.6.html#downloads下载通用版本linux 64,文章使用的是5.6.44版本wget https://dev.mysql.com/get/Downloads/MySQL-5.6/mysq...
2021-04-04
linux编译安装redis
Read More
下载rediswget http://download.redis.io/releases/redis-5.0.5.tar.gz解压tar.gz文件tar -zxvf redis-5.0.5.tar.gz进入到redis-5.0.5 编译安装make PREFIX=/usr/local/redis ...
2021-04-04
linux安装mysql-5.7.26-压缩包形式
Read More
下载方式使用wget下载wget https://cdn.mysql.com//Downloads/MySQL-5.7/mysql-5.7.26-linux-glibc2.12-x86_64.tar.gz如没有wget,使用yum安装命令 yum install wget解压缩mysql安装包tar...
2021-04-04
linux编译安装NGINX
Read More
编译安装NGINX下载nginx下载地址http://nginx.org/en/download.htmlwget http://nginx.org/download/nginx-1.14.2.tar.gz安装编译工具yum -y install gcc gcc-c++ autoconf autom...
2021-04-04
mysql忘记密码跳过密码登录
Read More
...
2021-04-04
linux下修改时区软连接方式
Read More
软连接修改时区方式(最简便)ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime 参考:https://www.cnblogs.com/lmx1002/p/9115110.html...
2021-04-04
Read More