Archive Tags About Subscribe

一二三四吾

Argericy

  • Aug 3
    解决nfs挂载错误wrong fs type, bad option, bad superblock

    [root@localhost]# mount -t nfs 192.168.0.106:/home/nfs1 mount: wrong fs type, bad option, bad superblock on 192.168.0.106:/home/nfs1, missing codepage or helper program, or other error (for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program) In some cases useful info is found in syslog - try dmesg | tail or so 解决办法: apt-get install nfs-common 或者 yum install nfs-utils

  • Aug 3
    申请 let's encrypt 通配符 ssl 证书

    在<使用 let’s encrypt 为网站开启 https>一问中,讲述了,如何用 let’s encrypt 为网站开启 https 协议,这篇内容讲一下如何申请 let’s encrypt 通配符证书 什么是通配符证

  • Jul 30
    使用 let's encrypt 为网站开启 https

    启用可用通道 $ yum -y install yum-utils $ yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional 安装 Certbot $ sudo yum install certbot python2-certbot-nginx 获取 nginx 服务器证书 $ sudo certbot certonly --nginx 遇到问题 certbot 未找到 nginx 二进制文件 The nginx plugin is not working; there may be problems with your existing configuration. The error was: NoInstallationError(“Could

  • Jul 24
    windows 命令行设置环境变量

    powershell #Powershell设置环境变量 #查看所有环境变量 ls env: #搜索环境变量 ls env:NODE* #查看单个环境变量 $env:NODE_ENV #添加/更新环境变量 $env:NODE_ENV=development #删除环境变量 del evn:NODE_ENV cmd #

  • Jul 24
    Uninx 网络编程环境搭建

    1,安装编译器,为了齐全还是安装一下build-essential sudo apt-get install build-essential 2,下载书中的头文件及示例源码 Source Code 3,解压unpv13e.tar.

  • Jul 20
    exec.Command 返回 “exit status 1” 获取详细错误信息

    cmd := exec.Command("find", "/", "-maxdepth", "1", "-exec", "wc", "-c", "{}", "\\") output, err := cmd.CombinedOutput() if err != nil { fmt.Println(fmt.Sprint(err) + ": " + string(output)) return } fmt.Println(string(output))

  • Jul 20
    ubuntu 创建桌面快捷方式

    安装 sudo apt-get install --no-install-recommends gnome-panel 使用 gnome-desktop-item-edit –create-new ~/Desktop

  • Jun 19
    vs code 调试远程代码

    简介 Visual Studio Code Remote - SSH 可以打开远程计算机或容器中的文件(计算机或容器中需要运行 SSH Server),而且可已充分利用 VS Code 的一切特性.一旦连接上服务器,

  • May 11
    vue jsonp 跨域调用 腾讯地图 api报错

    今天帮助前端小伙伴解决了一下 jsonp 调用腾讯地图 WebService API 报错 Unexpected token : 的问题,这里记录一下解决过程 项目中使用 vue-jsonp 组件来解决跨域问题,使用流程如下 安装 jsonp npm install vue-jsonp

  • May 10
    微信公众号 jssdk 报错

    引入 wx-js-sdk import wx from 'weixin-js-sdk'; 设置微信 config 部分代码: this.$axios.get("后台获取 config 地址", {}).then((response) => { ... wx.config(configData); wx.ready(() => { this.getLocation(); }) ... }) 前端 console 中报

← Newer Posts Older Posts →

本站总访问量 次 您是本站的第 位访客

© Copyright 2021 Argericy 苏ICP备18046444号-1