【跨境电商】搭建任意地区TikTok专线节点,免拔卡观看TikTok,双isp节点搭建,节点中转提速,寻找纯净IP,解决ip与DNS位置不一致问题
youtube播放地址:https://youtu.be/du1G5dG1qPQ 流量中转平台推荐: https://g.m123.org GIA线路VPS推荐: https://d.m123.org AT&T高质量住宅IP推荐: https://v.m123.org 相关教程: 专线中转教程:https://youtu.be/gTfOYu…
linux
cat /proc/version  #查看版本信息 uname -a   #查看版本和内核 cat /proc/cpuinfo #查看cpu信息   vi /etc/hosts 输入i编辑 对Hosts文件进行编辑,将下面的记录添加到Hosts文件最后位置 20.205.243.166 github.com 185.199.108.13…
Docker
容器操作 运行 docker run 起名运行 docker run -d --name 容器名 使用的镜像 端口映射 docker run -d --name 容器名 -p 外部端口:容器端口 镜像 docker run -d --name mynginx -p 30001:80 nginx 查看 docker ps 停止 docker stop…
CentOS安装Docker
卸载旧版本   sudo yum remove docker \ docker-client \ docker-client-latest \ docker-common \ docker-latest \ docker-latest-logrotate \ docker-logrotate \ docker-selinux \ dock…
MySQL授权super权限
GRANT SUPER ON *.* TO '用户名'@'localhost'; GRANT SUPER ON *.* TO '用户名'@'127.0.0.1'; flush privileges; REVOKE ALL PRIVILEGES ON *.* FROM 'pay'@'localhost'; REVOKE GRANT OPTION ON…
centos7安装docker
https://blog.csdn.net/liulihui1988/article/details/128687389 https://www.cnblogs.com/cnsyear/p/12712033.html https://blog.csdn.net/wade3015/article/details/94494929 centos更新yu…