Q's blog

一些个人文档笔记

注意:

迁移时需要将服务器/etc/ssh中的秘钥文件迁移走

镜像的秘钥路径在/etc/gitlab/

项目无法删除报500

https://blog.csdn.net/qq_37837432/article/details/121642542

1
2
3
4
su - gitlab-psql
psql -h /var/opt/gitlab/postgresql -d gitlabhq_production
UPDATE projects SET runners_token = null, runners_token_encrypted = null where name='xxxxx';

如果是ldap用户的个人项目无法删除,就将他的账户标识删除后登录再删除项目

迁移后异常500问题修复

OpenSSL::Cipher::CipherError ():

lib/gitlab/database/load_balancing/connection_proxy.rb:126:in `block in write_using_load_balancer’

1
2
3
4
5
6
sudo gitlab-rails runner "Project.where.not(import_url: nil).each { |p| p.import_data.destroy if p.import_data }"
sudo gitlab-rails c
settings = ApplicationSetting.last
settings.update_column(:runners_registration_token_encrypted, nil)
settings.update_column(:encrypted_ci_jwt_signing_key, nil)
settings.save!

某些原因需要自动截图。。

参考文档:

操作cookie:https://blog.csdn.net/ytraister/article/details/106033630

参数: https://blog.csdn.net/weixin_43968923/article/details/87899762

https://blog.csdn.net/m0_50944918/article/details/113185800

鼠标点击: http://www.360doc.com/content/22/1112/08/65839882_1055570473.shtml

模拟手机:https://blog.csdn.net/xiao_yi_xiao/article/details/122220828

安装环境: https://blog.csdn.net/zxp3817100/article/details/125089490

阅读全文 »

官网:http://iscute.cn/chfs

CuteHttpFileServer/chfs是一个免费的、HTTP协议的文件共享服务器,使用浏览器可以快速访问。它具有以下特点:

  • 单个文件,核心功能无需其他文件
  • 跨平台运行,支持主流平台:Windows,Linux和Mac
  • 界面简洁,简单易用
  • 支持扫码下载和手机端访问,手机与电脑之间共享文件非常方便
  • 支持账户权限控制和地址过滤
  • 支持快速分享文字片段
  • 支持webdav协议

与其他常用文件共享方式(如FTP,飞秋,网盘,自己建站)相比,具有使用简单,适用场景更多的优点,在个人使用以及共享给他人的场景中非常方便快捷。

阅读全文 »
0%