会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
_Lawrence
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
8
9
···
20
下一页
2023年11月24日
mysql select 多条数据uuid()重复问题解决
摘要: CONCAT(SUBSTRING(MD5(UUID()),1,8),'-',SUBSTRING(MD5(UUID()),8,4),'-',SUBSTRING(MD5(UUID()),12,4),'-',SUBSTRING(MD5(UUID()),16,4),'-',SUBSTRING(MD5(UUI
阅读全文
posted @ 2023-11-24 11:23 _Lawrence
阅读(745)
评论(0)
推荐(0)
2023年11月23日
springboot生成图案链接
摘要: http://patorjk.com/software/taag/#p=display&h=0&f=3D-ASCII&t=LLF
阅读全文
posted @ 2023-11-23 11:09 _Lawrence
阅读(24)
评论(0)
推荐(0)
2023年9月14日
ubuntu安装jdk
摘要: 卸载 检查是否安装:dpkg --list | grep -i jdk 移除openjdk包:apt-get purge openjdk* 卸载OpenJDK相关包:apt-get purge icedtea-* openjdk_* 再次检查是否卸载成功:dpkg --list | grep -i
阅读全文
posted @ 2023-09-14 08:53 _Lawrence
阅读(53)
评论(0)
推荐(0)
ubuntu安装nacos
摘要: git clone https://github.com/alibaba/nacos.git cd nacos/ mvn -Prelease-nacos -Dmaven.test.skip=true clean install -U cd distribution/target/nacos-serv
阅读全文
posted @ 2023-09-14 08:36 _Lawrence
阅读(102)
评论(0)
推荐(0)
2023年9月13日
ubuntu安装maven
摘要: sudo apt-get -y install maven mvn -version
阅读全文
posted @ 2023-09-13 20:58 _Lawrence
阅读(59)
评论(0)
推荐(0)
ubuntu redis安装
摘要: 1.1 更新仓库 sudo apt update 1.2 使用 apt 从官方 Ubuntu 存储库来安装 Redis sudo apt-get install redis-server 二、设置密码 2.1 打开Redis配置文件redis.conf sudo vi /etc/redis/redi
阅读全文
posted @ 2023-09-13 19:48 _Lawrence
阅读(212)
评论(0)
推荐(0)
ubuntu安装mysql8
摘要: 默认安装5.x版本 sudo apt install mysql-server 安装8.x版本,请继续往下看: https://dev.mysql.com/downloads/repo/apt/查看最新的mysql版本 apt-get update wget https://repo.mysql.c
阅读全文
posted @ 2023-09-13 19:28 _Lawrence
阅读(109)
评论(0)
推荐(0)
ubuntu卸载mysql
摘要: 停止MySQL服务: sudo systemctl stop mysql.service 移除MySQL服务: sudo systemctl disable mysql.service 使用apt-get移除MySQL包: sudo apt-get remove --purge mysql-serv
阅读全文
posted @ 2023-09-13 19:11 _Lawrence
阅读(40)
评论(0)
推荐(0)
2023年8月18日
ubuntu ssh免密公钥登录
摘要: 生成公钥后保存文件到本地,将公钥传输至目标服务器。 目标服务器生成秘钥:cat id_rsa_3072.pub >> authorized_keys 修改配置文件:vim /etc/ssh/sshd_config 修改文件权限: chmod 777 /root/.sshchmod 600 /root
阅读全文
posted @ 2023-08-18 10:02 _Lawrence
阅读(79)
评论(0)
推荐(0)
2023年8月17日
linux ssh限制ip白名单访问的两种方式
摘要: 第一种:sudo vi /etc/ssh/sshd_config 空白处添加 #如果仅允许用户,不限制IP AllowUsers ubuntu #仅允许特定用户特定IP AllowUsers ubuntu@10.138.20.21 保存退出后执行 sudo service ssh restart 第
阅读全文
posted @ 2023-08-17 16:01 _Lawrence
阅读(4899)
评论(0)
推荐(1)
上一页
1
2
3
4
5
6
7
8
9
···
20
下一页
公告