上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页
摘要: 注意: openssl版本(openssl版本要大于1.0.1,zlib版本要大于1.1.4) 一、安装依赖包 二、安装telnet服务非常重要 三、下载openssh 我是openssh-8.0p1 四、关闭防火墙、selinx 五、升级openssh 阅读全文
posted @ 2019-08-23 11:36 随心朝阳 阅读(1099) 评论(0) 推荐(0)
摘要: (1)将.pfx格式的证书转换为.pem文件格式: openssl pkcs12 -in xxx.pfx -nodes -out server.pem (2)从.pem文件中导出私钥server.key: openssl rsa -in server.pem -out server.key (3)从.pem文件中导出证书server.crt openssl x509 -in serv... 阅读全文
posted @ 2019-08-07 11:22 随心朝阳 阅读(2522) 评论(0) 推荐(1)
摘要: alter table 表名 add 新增字段名(类型+长度); #添加字段 alter table asset_orders add remark varchar2(255); #查看 describe asset_orders; 阅读全文
posted @ 2019-07-24 11:08 随心朝阳 阅读(119863) 评论(0) 推荐(1)
摘要: 今天来了一个需求,ip访问返回500,域名访问正常,只需在nginx.conf中添加 也可以把这些流量收集起来,导入到自己的网站,只要做以下跳转设置就可以: 按照如上设置后,确实不能通过IP访问服务器了,但是在应该用中出现当server_name后跟多个域名时,其中一个域名怎么都无法访问:设置如下: 阅读全文
posted @ 2019-07-18 15:01 随心朝阳 阅读(2373) 评论(0) 推荐(0)
摘要: go语言资料汇总 : https://blog.zhnytech.com/articles/2016/07/15/Golang%E5%AD%A6%E4%B9%A0%E8%B5%84%E6%96%99%E6%94%B6%E9%9B%86.html github资料基础:https://github.c 阅读全文
posted @ 2019-07-12 11:07 随心朝阳 阅读(211) 评论(0) 推荐(0)
摘要: 今天在新来了一台ubutnu 18.04 在安装zabbix客户端是报依赖问题 解决方案: 阅读全文
posted @ 2019-06-28 15:11 随心朝阳 阅读(7425) 评论(0) 推荐(0)
摘要: oracle 密码过期 默认是180天 sqlplus / as sysdbasql 登录测试 阅读全文
posted @ 2019-06-20 09:33 随心朝阳 阅读(260) 评论(0) 推荐(0)
摘要: 第一步、创建用户。使用有管理员权限的用户创建一个新的用户: create user 用户名 identified by 密码 default tablespace 表空间; 第二步、赋连接权限: grant connect to 用户名; 第三步、赋表权限 owner 主用户 grant select on owner.表名 to 用户名; 如果有多表,可以用selece转换批量... 阅读全文
posted @ 2019-06-18 15:33 随心朝阳 阅读(592) 评论(0) 推荐(0)
摘要: 今天普通用户ssh 登录提示shell request failed on channel 0 然后就退出了 幸亏root 用户没有被禁用,在root下 su - 普通 切换提示资源不足 解决方法 xxxx 普通用户 阅读全文
posted @ 2019-06-18 10:49 随心朝阳 阅读(9446) 评论(0) 推荐(0)
摘要: 今天在ssh 提示 WARNING:Your password has expired 设置用户到期时间 阅读全文
posted @ 2019-06-06 16:47 随心朝阳 阅读(3791) 评论(0) 推荐(0)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页