分页: 2/63 第一页 上页 1 2 3 4 5 6 7 8 9 10 下页 最后页 [ 显示模式: 摘要 | 列表 ]
Apr 22
最近研究了钉钉和企业微信的接口.发现想成为钉钉的服务商需要很多门槛.而成为企业微信的服务商.却很简单,只要验证了就成功了.
初步了解一情况发以下问题:
Apr 16
连接被拒绝,因为没有授权此用户账户进行远程登录。

今天同事说新开通的服务器需要添加一个新帐号,但远程连接不成功。
Apr 2
centos已经被放弃了,所以尝试使用debain 为作服务器的母机系统.
目前的架构都是使用docker来运行具体的服务.所以安装docker成了第一步.
[code]
apt update
apt install apt-transport-https ca-certificates curl software-properties-common gnupg2
curl -fsSL https://download.docker.com/linux/debian/gpg |  sudo apt-key add -
echo " deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable "> /etc/apt/sources.list.d/docker.list
apt update
apt install docker-ce
systemctl status docker.service
docker ps
docker container run hello-world
[code]
Apr 2
最近公司在一个物联网项目,于是开始研究物联网的通信方案。目前的物联网通信方案:wifi,4G,5G,NB-IoT,Lora这几个方案中4G,NBIoT,Lora的模块基本上都是在35~60元之间。而wifi则便宜,10~20之间,而且 还有一个ESP的模块还可以作为主控板.
Jul 24


1. 安装基础环境

yum install -y yum-utils   device-mapper-persistent-data   lvm2
yum install -y https://download.docker.com/linux/fedora/30/x86_64/stable/Packages/containerd.io-1.2.6-3.3.fc30.x86_64.rpm



2. 增加docker的源文件
  
  
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo


3. 安装docker

  
yum -y install docker-ce


4. 设置自动启动
systemctl enable docker
systemctl restart docker
分页: 2/63 第一页 上页 1 2 3 4 5 6 7 8 9 10 下页 最后页 [ 显示模式: 摘要 | 列表 ]