上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: 卸载 检查是否安装: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 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(88) 评论(0) 推荐(0) 编辑
摘要: sudo apt-get -y install maven mvn -version 阅读全文
posted @ 2023-09-13 20:58 _Lawrence 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 默认安装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 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 停止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 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 生成公钥后保存文件到本地,将公钥传输至目标服务器。 目标服务器生成秘钥: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 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 第一种: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 阅读(3400) 评论(0) 推荐(1) 编辑
摘要: 进入bin目录sh startup.sh -m standalone如果无法启动 改用以下命令进行启动: bash -f ./startup.sh -m standalone 阅读全文
posted @ 2023-06-29 10:08 _Lawrence 阅读(56) 评论(0) 推荐(0) 编辑
摘要: <!--公共interface模块--> <dependency> <groupId>com.hcp</groupId> <artifactId>dubbointerface</artifactId> <version>0.0.1-SNAPSHOT</version> </dependency> 阅读全文
posted @ 2023-05-18 21:42 _Lawrence 阅读(80) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页