会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
刘德合
博客园
首页
新随笔
联系
订阅
管理
2025年12月9日
GitLab IP地址更换
摘要: 第一步,在gitlib安装目录找到gitlab.yml,打开编辑,输入IP地址,保存 第二步,打开gitlab.rb,打开编辑 找到external_url 输入http://IP 地址,保存 重启gitlab
阅读全文
posted @ 2025-12-09 13:30 刘德合
阅读(0)
评论(0)
推荐(0)
2024年10月30日
修改mysql root远程访问
摘要: 登录mysql服务器 mysql -uroot -p +密码 use mysql; update user set host = '%' where user ='root'; 查询host状态 select host,user from user; quit; 重启mysql服务器
阅读全文
posted @ 2024-10-30 11:25 刘德合
阅读(23)
评论(0)
推荐(0)
centos安装最新mysql密码为空
摘要: # 1. 安装MySQL服务器 sudo yum install mysql-server # 2. 启动MySQL服务 sudo systemctl start mysqld # 3. 运行安全安装向导 sudo mysql_secure_installation # 4. 启动MySQL服务开机
阅读全文
posted @ 2024-10-30 10:28 刘德合
阅读(20)
评论(0)
推荐(0)
2024年10月28日
linux etc目录下init.d文件不存在解决方法
摘要: 今天安装teleport出现init.d/teleport文件无法找到的问题,解决方法如下:输入命令 dnf install chkconfig 解决init.d不存在的问题。
阅读全文
posted @ 2024-10-28 16:44 刘德合
阅读(233)
评论(0)
推荐(0)
2024年1月29日
Monday 使用过程的中的问题
摘要: 1、时间轴无法在图标中 统计数据 解决方法:把时间轴转化成数值即可ROUND(时间轴#hours)
阅读全文
posted @ 2024-01-29 13:29 刘德合
阅读(16)
评论(0)
推荐(0)
2023年4月7日
pip下载速度慢用这个
摘要: pip config set global.index-url https://mirror.baidu.com/pypi/simple
阅读全文
posted @ 2023-04-07 15:01 刘德合
阅读(19)
评论(0)
推荐(0)
2022年4月26日
vscode下载慢换镜像源解决
摘要: 链接中 http://az764295.vo.msecnd.net 替换为 http://vscode.cdn.azure.cn
阅读全文
posted @ 2022-04-26 14:11 刘德合
阅读(592)
评论(0)
推荐(0)
2021年1月15日
世界地图svg下载
摘要: https://www.amcharts.com/svg-maps/?map=china
阅读全文
posted @ 2021-01-15 14:57 刘德合
阅读(1116)
评论(0)
推荐(1)
2020年7月25日
js数组的增加与删除
摘要: var arr = [1,2,3]; arr.push(4); console.log(arr); arr = [1,2,3,4] push可以在数组末端增加新的元素 unshift 可以数组的开头增加新的元素 arr.unshift('liu') console.log(arr) arr = ['
阅读全文
posted @ 2020-07-25 19:12 刘德合
阅读(484)
评论(0)
推荐(0)
2020年7月22日
js冒泡排序
摘要: function arr_fun(arr) { for (var i = 0; i <= arr.length - 1; i++) { for (var j = 0; j <= arr.length - i - 1; j++) { if (arr[j] > arr[j +
阅读全文
posted @ 2020-07-22 22:30 刘德合
阅读(99)
评论(0)
推荐(0)
下一页
公告