啥也没写
发布时间:2021-02-01 15:35:50
yum install wget socat -y# 下载并安装sealos, sealos是个golang的二进制工具,直接下载拷贝到bin目录即可, release页面也可下载wget -c https://sealyun.oss-cn-beijing.aliyuncs.com/latest/sealos && \ chmod +x sealos && mv sealos /usr/bin # 下载离线资源包wget -c https://sealyun.oss-.........【阅读全文】
发布时间:2021-01-25 10:23:07
git clone https://github.com/ngtcp2/nghttp3cd nghttp3autoreconf -i./configure --prefix=/usr/local/nghttp3 --enable-lib-onlymakemake installcd ..git clone https://github.com/ngtcp2/ngtcp2cd ngtcp2autoreconf -i ./configure PKG_CONFIG_PATH=/usr/local/openssl111g/lib/pkgconfig:/usr/local.........【阅读全文】
发布时间:2021-01-20 11:47:23
修改第三方源yarn config get registryyarn config set registry 'https://registry.npm.taobao.org'npm config get registrynpm config set registry 'https://registry.npm.taobao.org'cat package.json { "name": "MyCoolIDE", "scripts": { "prepare": "yarn run clean && yar.........【阅读全文】
发布时间:2021-01-11 10:50:27
curl -k -L https://istio.io/downloadIstio | sh -export PATH="$PATH:/root/istio-1.8.1/bin"使用默认配置档安装 Istio#istioctl installistioctl install --set profile=demo -ykubectl get svc,pod -n istio-system给命名空间添加标签,指示 Istio 在部署应用的时候,自动的注入 Envoy 边车代理:kubectl lab.........【阅读全文】
发布时间:2021-01-06 10:41:23
关闭防火墙 swapsystemctl stop firewalldsystemctl disable firewalldiptables -F && iptables -X && iptables -F -t nat && iptables -X -t natiptables -P FORWARD ACCEPTswapoff -ased -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstabsetenforce 0sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config.........【阅读全文】