华南农业大学linux综合实验(docker) 阿里云搭建服务器记录

出分了95分 晚一点吧整理的笔记上传 含有大量GPT注释秒懂的那种 感觉linux这课巨简单

http://47.96.130.23:8090/ 博客地址
http://47.96.130.23:8800/ python
http://47.96.130.23:8001/ php
http://47.96.130.23:880/ phpadmin

https://developer.aliyun.com/article/1102995

https://www.bilibili.com/video/BV1Uv411j7Yr/?spm_id_from=333.337.top_right_bar_window_custom_collection.content.click&vd_source=588ed17fd849b85973c73056665cbf7e
https://www.bilibili.com/video/BV1Uv411j7Yr/?spm_id_from=333.788.top_right_bar_window_custom_collection.content.click

https://blog.csdn.net/qq_52423918/article/details/122276033

https://blog.csdn.net/qq_46351761/article/details/120384611?spm=1001.2014.3001.5501)

安装宝塔后使用宝塔外网ip登录可以无需ssh xshell
配置docker后选择halo的可以用的容器即可

https://blog.csdn.net/qq_35427589/article/details/124822628?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522168572377116782427465310%2522%252C%2522scm%2522%253A%252220140713.130102334…%2522%257D&request_id=168572377116782427465310&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2allbaidu_landing_v2~default-3-124822628-null-null.142v88control_2,239v2insert_chatgpt&utm_term=%2Fetc%2Fdocker%2Fdaemon.json&spm=1018.2226.3001.4187

https://blog.csdn.net/gfgfgfggf/article/details/113174353

https://docs.halo.run/getting-started/install/docker 这个好

https://blog.csdn.net/qq_35427589/article/details/124822628?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522168572377116782427465310%2522%252C%2522scm%2522%253A%252220140713.130102334…%2522%257D&request_id=168572377116782427465310&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2allbaidu_landing_v2~default-3-124822628-null-null.142v88control_2,239v2insert_chatgpt&utm_term=%2Fetc%2Fdocker%2Fdaemon.json&spm=1018.2226.3001.4187

这里是引用

华南农业大学linux综合实验(docker) 阿里云搭建服务器记录_第1张图片docker容器正常运行
华南农业大学linux综合实验(docker) 阿里云搭建服务器记录_第2张图片

==================================================================
外网面板地址: https://47.96.130.23:33807/dbd41e5e
内网面板地址: https://172.29.97.211:33807/dbd41e5e
username: yij1xuqt
password: cbc3009a
If you cannot access the panel,
release the following panel port [33807] in the security group
若无法访问面板,请检查防火墙/安全组是否有放行面板[33807]端口
因已开启面板自签证书,访问面板会提示不匹配证书,请参考以下链接配置证书
https://www.bt.cn/bbs/thread-105443-1-1.html
==================================================================
Time consumed: 1 Minute!


server:
  port: 8090

  # Response data gzip.
  compression:
    enabled: false
spring:
  datasource:

    # H2 database configuration.
    driver-class-name: org.h2.Driver
    url: jdbc:h2:file:~/.halo/db/halo
    username: admin
    password: 123456

    # MySQL database configuration.
#    driver-class-name: com.mysql.cj.jdbc.Driver
#    url: jdbc:mysql://127.0.0.1:3306/halodb?characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&allowPublicKeyRetrieval=true
#    username: root
#    password: 123456

  # H2 database console configuration.
  h2:
    console:
      settings:
        web-allow-others: false
      path: /h2-console
      enabled: false

halo:




docker run --rm -it -d --name halo -p 8090:8090  -v ~/.halo:/root/.halo ruibaby/halo


docker run \
  -it -d \
  --name halo \
  -p 8090:8090 \
  -v ~/.halo2:/root/.halo2 \
  halohub/halo:2.6 \
  --halo.external-url=http://localhost:8090/ \
  --halo.security.initializer.superadminusername=admin \
  --halo.security.initializer.superadminpassword=P@88w0rd  

你可能感兴趣的:(docker,服务器,linux)