服务器宝塔安装哪吒监控

打印 上一主题 下一主题

主题 839|帖子 839|积分 2517

哪吒文档地址:https://nezha.wiki/guide/dashboard.html
  一、预备工作


  • OAuth : 我利用的gitee,github偶尔无法访问,不是很方便。第一次用了极狐GitLab,没留意,效果是利用90天,90天后gg了,无法登录。。。
  • 服务器安装宝塔,安装哪吒面板
  • 要监控的服务器,安装哪吒agent
二、创建Gitee OAuth


  • 创建Gitee账号 (我有账号,跳过)
  • 创建第三方应用
    地址:https://gitee.com/oauth/applications


重点:应用回调地址记得在域名背面加 /oauth2/callback 后缀,比如:
   应用主页:https://nezha.aaaa.com
应用回调地址:https://nezha.aaaa.com/oauth2/callback
  然后点击创建应用就行了,然后保存一下Client ID ,Client Secret,一会设置需要用到

三、宝塔摆设哪吒


  • 一键摆设下令:curl -L https://gitee.com/naibahq/nezha/raw/master/script/install.sh -o nezha.sh && chmod +x nezha.sh && sudo CN=true ./nezha.sh
    这里就用到上面的 Client ID 和 Client Secret,

这里有个坑,就是用户名,我不停以为是页面体现的用户名,还试了邮箱地址不行
点击 你的头像 – 个人主页 ,看上面的url地址gitee.com 背面的就是你的用户名了

  • 在宝塔新建站点,代理监控面板
    2.1 添加站点 – 域名: nezha.aaaa.com, 创建完毕点击 nezha.aaaa.com域名,点击 反向代理设置 添加反向代理


    设置文件将原有的扫除,更换以下设置
  1. location / {
  2.   proxy_pass http://127.0.0.1:8008;
  3.   proxy_set_header Host $host;
  4. }
  5. location /ws {
  6.   proxy_pass http://127.0.0.1:8008;
  7.   proxy_http_version 1.1;
  8.   proxy_set_header Upgrade $http_upgrade;
  9.   proxy_set_header Connection "Upgrade";
  10.   proxy_set_header Host $host;
  11. }
  12. location /terminal {
  13.   proxy_pass http://127.0.0.1:8008;
  14.   proxy_http_version 1.1;
  15.   proxy_set_header Upgrade $http_upgrade;
  16.   proxy_set_header Connection "Upgrade";
  17.   proxy_set_header Host $host;
  18. }
复制代码
面板就搭建好了,访问地址:nezha.aaaa.com 就能看到页面了
四、设置后台


  • 登录后台,点击设置,增加 未接入CDN的面板服务器域名/IP 这个设置,地址就写你上面摆设面板的ip大概域名,然后保存。

五、增加服务器

在后台管理中 点击 “服务器” --> “新增服务器”

新增的服务器会体现在列表中,点击列表中的 “编辑” 按钮,最背面有一键安装脚本,复制到你对应的服务器就可以了

六、 (可选)页面美化

在 ”设置“ ”自界说代码“ 中写入以下设置
  1.         <style>
  2. /* 屏幕适配 */
  3. @media only screen and (min-width: 1200px) {
  4.     .ui.container {
  5.     width: 80% !important;
  6. }
  7. }
  8. @media only screen and (max-width: 767px) {
  9.     .ui.card>.content>.header:not(.ui), .ui.cards>.card>.content>.header:not(.ui) {
  10.         margin-top: 0.4em !important;
  11.     }
  12. }
  13. /* 整体图标 */
  14. i.icon {
  15.     color: #000;
  16.     width: 1.2em !important;
  17. }
  18. /* 背景图片 */
  19. body {
  20.     content: " " !important;
  21.     background: fixed !important;
  22.     z-index: -1 !important;
  23.     top: 0 !important;
  24.     right: 0 !important;
  25.     bottom: 0 !important;
  26.     left: 0 !important;
  27.     background-position: top !important;
  28.     background-repeat: no-repeat !important;
  29.     background-size: cover !important;
  30.     background-image: url(https://gitee.com/darki/img/raw/master/1631081013043.webp) !important;
  31.     font-family: Arial,Helvetica,sans-serif !important;
  32. }
  33. /* 导航栏 */
  34. .ui.large.menu {
  35.     border: 0 !important;
  36.     border-radius: 0px !important;
  37.     background-color: rgba(255, 255, 255, 55%) !important;
  38. }
  39. /* 首页按钮 */
  40. .ui.menu .active.item {
  41.     background-color: transparent !important;
  42. }
  43. /* 导航栏下拉框 */
  44. .ui.dropdown .menu {
  45.     border: 0 !important;
  46.     border-radius: 0 !important;
  47.     background-color: rgba(255, 255, 255, 80%) !important;
  48. }
  49. /* 登陆按钮 */
  50. .nezha-primary-btn {
  51.     background-color: transparent !important;
  52.     color: #000 !important;
  53. }
  54. /* 大卡片 */
  55. #app .ui.fluid.accordion {
  56.     background-color: #fbfbfb26 !important;
  57.     border-radius: 0.4rem !important;
  58. }
  59. /* 小卡片 */
  60. .ui.four.cards>.card {
  61.     border-radius: 0.6rem !important;
  62.     background-color: #fafafaa3 !important;
  63. }
  64. .status.cards .wide.column {
  65.     padding-top: 0 !important;
  66.     padding-bottom: 0 !important;
  67.     height: 3.3rem !important;
  68. }
  69. .status.cards .three.wide.column {
  70.     padding-right: 0rem !important;
  71. }
  72. .status.cards .wide.column:nth-child(1) {
  73.     margin-top: 2rem !important;
  74. }
  75. .status.cards .wide.column:nth-child(2) {
  76.     margin-top: 2rem !important;
  77. }
  78. .status.cards .description {
  79.     padding-bottom: 0 !important;
  80. }
  81. /* 小鸡名 */
  82. .status.cards .flag {
  83.     margin-right: 0.5rem !important;
  84. }
  85. /* 弹出卡片图标 */
  86. .status.cards .header > .info.icon {
  87.     margin-right: 0 !important;
  88. }
  89. .nezha-secondary-font {
  90.     color: #21ba45 !important;
  91. }
  92. /* 进度条 */
  93. .ui.progress {
  94.     border-radius: 50rem !important;
  95. }
  96. .ui.progress .bar {
  97.     min-width: 1.8em !important;
  98.     border-radius: 15px !important;
  99.     line-height: 1.65em !important;
  100. }
  101. .ui.fine.progress> .bar {
  102.     background-color: #21ba45 !important;
  103. }
  104. .ui.progress> .bar {
  105.     background-color: #000 !important;
  106. }
  107. .ui.progress.fine .bar {
  108.     background-color: #21ba45 !important;
  109. }
  110. .ui.progress.warning .bar {
  111.     background-color: #ff9800 !important;
  112. }
  113. .ui.progress.error .bar {
  114.     background-color: #e41e10 !important;
  115. }
  116. .ui.progress.offline .bar {
  117.     background-color: #000 !important;
  118. }
  119. /* 上传下载 */
  120. .status.cards .outline.icon {
  121.     margin-right: 1px !important;
  122. }
  123. i.arrow.alternate.circle.down.outline.icon {
  124.     color: #21ba45 !important;
  125. }
  126. i.arrow.alternate.circle.up.outline.icon {
  127.     color: red !important;
  128. }
  129. /* 弹出卡片小箭头 */
  130. .ui.right.center.popup {
  131.     margin: -3px 0 0 0.914286em !important;
  132.     -webkit-transform-origin: left 50% !important;
  133.     transform-origin: left 50% !important;
  134. }
  135. .ui.bottom.left.popup {
  136.     margin-left: 1px !important;
  137.     margin-top: 3px !important;
  138. }
  139. .ui.top.left.popup {
  140.     margin-left: 0 !important;
  141.     margin-bottom: 10px !important;
  142. }
  143. .ui.top.right.popup {
  144.     margin-right: 0 !important;
  145.     margin-bottom: 8px !important;
  146. }
  147. .ui.left.center.popup {
  148.     margin: -3px .91428571em 0 0 !important;
  149.     -webkit-transform-origin: right 50% !important;
  150.     transform-origin: right 50% !important;
  151. }
  152. .ui.right.center.popup:before,
  153. .ui.left.center.popup:before {
  154.     border: 0px solid #fafafaeb !important;
  155.     background: #fafafaeb !important;
  156. }
  157. .ui.top.popup:before {
  158.     border-color: #fafafaeb transparent transparent !important;
  159. }
  160. .ui.popup:before {
  161.     border-color: #fafafaeb transparent transparent !important;
  162. }
  163. .ui.bottom.left.popup:before {
  164.     border-radius: 0 !important;
  165.     border: 1px solid transparent !important;
  166.     border-color: #fafafaeb transparent transparent !important;
  167.     background: #fafafaeb !important;
  168.     -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
  169.     box-shadow: 0px 0px 0 0 #fafafaeb !important;
  170.     -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  171. }
  172. .ui.bottom.right.popup:before {
  173.     border-radius: 0 !important;
  174.     border: 1px solid transparent !important;
  175.     border-color: #fafafaeb transparent transparent !important;
  176.     background: #fafafaeb !important
  177.     -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
  178.     box-shadow: 0px 0px 0 0 #fafafaeb !important;
  179.     -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  180. }
  181. .ui.top.left.popup:before {
  182.     border-radius: 0 !important;
  183.     border: 1px solid transparent !important;
  184.     border-color: #fafafaeb transparent transparent !important;
  185.     background: #fafafaeb !important;
  186.     -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
  187.     box-shadow: 0px 0px 0 0 #fafafaeb !important;
  188.     -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  189. }
  190. .ui.top.right.popup:before {
  191.     border-radius: 0 !important;
  192.     border: 1px solid transparent !important;
  193.     border-color: #fafafaeb transparent transparent !important;
  194.     background: #fafafaeb !important;
  195.     -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
  196.     box-shadow: 0px 0px 0 0 #fafafaeb !important;
  197.     -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  198. }
  199. .ui.left.center.popup:before {
  200.     border-radius: 0 !important;
  201.     border: 1px solid transparent !important;
  202.     border-color: #fafafaeb transparent transparent !important;
  203.     background: #fafafaeb !important;
  204.     -webkit-box-shadow: 0px 0px 0 0 #fafafaeb !important;
  205.     box-shadow: 0px 0px 0 0 #fafafaeb !important;
  206.     -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  207. }
  208. /* 弹出卡片 */
  209. .status.cards .ui.content.popup {
  210.     min-width: 20rem !important;
  211.     line-height: 2rem !important;
  212.     border-radius: 5px !important;
  213.     border: 1px solid transparent !important;
  214.     background-color: #fafafaeb !important;
  215.     font-family: Arial,Helvetica,sans-serif !important;
  216. }
  217. .ui.content {
  218.     margin: 0 !important;
  219.     padding: 1em !important;
  220. }
  221. /* 服务页 */
  222. .ui.table {
  223.     background: RGB(225,225,225,0.6) !important;
  224. }
  225. .ui.table thead th {
  226.     background: transparent !important;
  227. }
  228. /* 服务页进度条 */
  229. .service-status .good {
  230.     background-color: #21ba45 !important;
  231. }
  232. .service-status .danger {
  233.     background-color: red !important;
  234. }
  235. .service-status .warning {
  236.     background-color: orange !important;
  237. }
  238. /* 版权 */
  239. .ui.inverted.segment, .ui.primary.inverted.segment {
  240.     color: #000 !important;
  241.     font-weight: bold !important;
  242.     background-color: #fafafaa3 !important;
  243. }
  244. </style>
  245. <!--Logo和版权-->
  246. <script>
  247. window.onload = function(){
  248. var avatar=document.querySelector(".item img")
  249. var footer=document.querySelector("div.is-size-7")
  250. footer.innerHTML="我的CSS"
  251. footer.style.visibility="visible"
  252. avatar.src="https://ii.do/favicon.ico"
  253. avatar.style.visibility="visible"
  254. }
  255. </script>
复制代码
七、(可选)反代 gRPC

新建一个站点,修改的nginx设置如下:
  1. ...
  2.     ssl_stapling on;
  3.     underscores_in_headers on;
  4.     keepalive_time 24h;
  5.     keepalive_requests 100000;
  6.     keepalive_timeout 120s;
  7.     location / {
  8.         grpc_read_timeout 300s;
  9.         grpc_send_timeout 300s;
  10.         grpc_socket_keepalive on;
  11.         grpc_pass grpc://127.0.0.1:5555;
  12.     }
  13. ...
复制代码
反代grpc之后,agent呆板的设置也需要改变才气正常通信

测试下令:
./nezha-agent -s grpc反代域名:443 -p 密钥 --tls --debug
如果没有明显的报错提示那就能在面板中看到你的服务器了
大概就是这样的


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

滴水恩情

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表