读好书,交益友
发布时间:2018-10-11 14:56:28
1 Create a Root CA and generate a server certificate, private key, client certificate, and client key.openssl genrsa -des3 -out ca.key 4096openssl req -new -x509 -days 365 -key ca.key -out ca.crt -subj "/C=CN/ST=beijing/L=haidianO=changyang/CN=Self-Signed CA"openssl genrsa -out client.key 4096.........【阅读全文】
发布时间:2018-08-28 17:37:04
windows下安装mysql 5.7首先必须运行在Administrator权限下面创建data目录运行 UPDATE. authentication_string () password_expired ;FLUSHPRIVILEGES......【阅读全文】
发布时间:2018-06-26 10:18:40
For posting data:curl --data "param1=value1¶m2=value2" http://hostname/resourceFor file upload:curl --form "fileupload=@filename.txt" http://hostname/resourcecurl -X POST -F 'image=@/path/to/pictures/picture.jpg' http://domain.tld/uploadRESTful HTTP Post:curl -X POST -d @filename h.........【阅读全文】
发布时间:2018-06-25 18:24:17
很多人给的解决方案是这样的,修改 /etc/my.cnf , 然后重启服务.点击(此处)折叠或打开[mysqld] skip-host-cacheskip-name-resolve......【阅读全文】