摘要:
92.168.10.187 CA服务器 192.168.10.190 web服务器 (1)搭建CA cd /etc/pki/CA 在这个目录下创建serial和index.txt两个文件 echo 00 > serial (00是颁发证书最初的版本号) touch index.txt (umask 阅读全文
摘要:
#生成一个RSA秘钥 openssl genrsa -des3 -out a_com.key 1024 #生成一个证书请求openssl req -new -key a_com.key -out a_com.csr #拷贝一个不需要输入密码的秘钥文件openssl rsa -in a_com.key 阅读全文
摘要:
一、环境准备 1.1 安装VirtualBox并在其中安装好Ubuntu 这一步其实没啥好说的,下载好最新版的VirtualBox,下载Ubuntu Server,我用的是16.10 X64。在安装完Ubuntu后,需要保证apt source是国内的,不然如果是国外的话会很慢很慢的。具体做法是 打 阅读全文
摘要:
用 git add file 添加文件时出现这样错误: fatal: Not a git repository (or any of the parent directories): .git 提示说没有 .git 这样一个目录, 解决办法如下: git init 就可以了! 阅读全文
摘要:
问题 我这有一个项目是.net core写的,然后运行到centos机器上,刚开始发请求都能正常处理,但是时间长了,程序会报Segmentation fault,然后退出,我查了一下系统log,说的是Aug 16 03:50:23 localhost kernel: dotnet[3181]: se 阅读全文
摘要:
curl -fsSL https://get.docker.com/ | sh 执行到这一部分出错: The program 'curl' is currently not installed. You can install it by typing:apt install curl 解决办法:s 阅读全文
摘要:
最近使用这个工具,普通用户可以登录root用户不可以登录。将vi /etc/ssh/sshd_config按照下述配置解决问题 修改sshd配置文件:vi /etc/ssh/sshd_config PermitRootLogin yes PubkeyAuthentication no Passwor 阅读全文
摘要:
解决办法: (1)查看ip地址是否冲突 我在单位的虚拟机ip地址是192.168.14.85,与其它机器冲突了。改成了192.168.14.83 (2)关闭Ubuntu14.04的防火墙 root@stgman-desktop:~# sudo ufw disable 防火墙在系统启动时自动禁用 亲自 阅读全文
摘要:
linux下怎么安装Go开发环境?linux部署golang 1. SSH远程登录你的linux服务器 2. yum install mercurial安装 mercurial包 3. 安装git包yum install git 4. 安装gccyum install gcc 5. 然后就可以下载g 阅读全文
摘要:
区别:前台启动ctrl+c就会关闭程序,后台启动ctrl+c不会关闭程序 catalina.out将标准输出指向制定文件catalina.out2>&1 输出所有的日志文件& 后台启动 #!/bin/sh #功能简介:启动上层目录下的jar文件 #参数简介: # $1:jar文件名(包含后缀名) # 阅读全文