Nexus ssl设定

证明书做成

注意一定要使用 \nexus\jre\bin\keytool 工具

keytool -genkeypair -keystore keystore.jks -storepass 【password】 -alias nexus -keyalg RSA -keysize 2048 -validity 5000 -keypass 【password】 -dname ‘CN=[ip adress], OU=Sonatype, O=Sonatype, L=Unspecified, ST=Unspecified, C=JP’

keytool -exportcert -keystore keystore.jks -alias nexus -rfc > nexus.cert

keytool -importkeystore -srckeystore keystore.jks -destkeystore nexus.p12 -deststoretype PKCS12

keytool -list -keystore nexus.p12 -storetype PKCS12

  • 命令执行路径:nexus\etc\ssl

生成如下文件:

keystore.jks

nexus.p12

nexus.cert

各种设定修改

nexus\etc\nexus-default.properties

application-port-ssl=8443
nexus-args=${jetty.etc}/jetty.xml,${jetty.etc}/jetty-http.xml,${jetty.etc}/jetty-requestlog.xml,${jetty.etc}/jetty-https.xml

nexus\etc\jetty\jetty-https.xml

1
2
3
4
<Set name="KeyStorePassword">[password]</Set>
<Set name="KeyManagerPassword">[password]</Set>
<Set name="TrustStorePath"><Property name="ssl.etc"/>/keystore.jks</Set>
<Set name="TrustStorePassword">[password]</Set>

github IDENTIFICATION HAS CHANGED 问题解决

问题描述

github提交时,发生以下错误:

1
2
3
4
5
6
7
8
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!
Someone could be eavesdropping on you right now (man-in-the-middle attack)!
It is also possible that a host key has just been changed.
The fingerprint for the RSA key sent by the remote host is
......

问题原因

https://github.blog/2023-03-23-we-updated-our-rsa-ssh-host-key/ 中提到发现GitHub.com 的 RSA SSH private key 被提交到了一个公开的仓库,为了保证用户数据安全,替换了新的密钥。
通过 SSH 与 Github 交互的用户需要替换 ~/.ssh/known_hosts 文件中的旧信息。

解决方法

移除替换 ~/.ssh/known_hosts 文件中的旧信息

ssh-keygen -R github.com

测试

ssh -T git@github.com


quasar开发

开发说明

程序入口

开发中。。。

程序构成

Read more
Go2048说明

游戏入口

创建应用

1
2
3
4
5
> npm create vite@latest

√ Project name: ... go2048
√ Select a framework: » Vue
√ Select a variant: » TypeScript
Read more
那些好的句子

在一辆列车上,男孩拿着手机发微博,他在微博上写下:“在车上,我对她一见钟情。不知为什么,她一直望着窗外。”男孩默默的看着她,心想她一定不知道,过了一会儿,微博上有人回复了他:“因为玻璃上倒映着你的脸。”

——《车站》

事实上,车站比婚礼现场见证了更多真挚的接吻,医院的墙壁比教堂聆听了更多的祷告。

——《车站》

民谣太穷了,一听就是一包烟,一整夜,可烟就剩一根了,还要撑一夜,可我就剩一点爱了,还要过一生。

——《我们的世界很民谣》

“我自问这辈子没做过坏事,为什么要被生活勒住喉咙。”爸爸在日记里写到。

——《父亲写的散文诗》

刘翔是唯一一个在直线跑道上真正打败黑人的运动员,甚至创造了连白人都没做到的记录。刘翔参加了48次世界大赛,36次冠军,6次亚军,3次季军,然而有些人却只记得他退赛2次

——《追梦赤子心》

故乡安置不了肉身,从此有了漂泊,有了远方。

异乡安置不了灵魂,从此有了归乡,有了故乡

——《异乡人》

Read more