摘要:
Nexus 官网 https://help.sonatype.com/repomanager3/product-information/download 进入 nexus-3.21.2-03 文件夹,其中 etc/nexus-default.properties 文件配置端口(默认为 8081)和 阅读全文
posted @ 2024-01-12 14:32
博小群
阅读(49)
评论(0)
推荐(0)
摘要:
CentOS7,MySQL5.7 两台机器,master为192.168.226.130,slave为192.168.226.131 配置主MySQL 首先,登录MySQL,创建一个同步账号,用于从服务器访问主服务器 create user 'repl'@'%' identified by '密码' 阅读全文
posted @ 2024-01-12 14:30
博小群
阅读(87)
评论(0)
推荐(0)
摘要:
/usr/bin/mysqldump -h 192.168.0.201 -u root -p'Newland123!' --default-character-set=utf8 tnhg > /Lims/mysql/bak_DB/tnhg/tnhg_db_date +%Y%m%d%H%M%S.sql 阅读全文
posted @ 2024-01-12 14:29
博小群
阅读(15)
评论(0)
推荐(0)
摘要:
每天定时备份数据库需要用到Linux的定时任务,利用Linux的crondtab 命令。下面通过本文给大家带来了linux每天定时备份数据库并删除十天前数据详细步骤,感兴趣的朋友一起看看吧 每天定时备份数据库需要用到Linux的定时任务,利用Linux的crondtab 命令。下面我们来看详细步骤: 阅读全文
posted @ 2024-01-12 14:29
博小群
阅读(272)
评论(0)
推荐(0)
摘要:
一 查看linux操作系统版本和系统内核版本 [root@nfs_client ~]# cat /etc/redhat-release 查看操作系统版本 CentOS Linux release 7.5.1804 (Core) [root@nfs_client ~]# uname -r 查看系统内核 阅读全文
posted @ 2024-01-12 14:28
博小群
阅读(181)
评论(0)
推荐(0)
摘要:
1.下载 MySQL 所需要的安装包 网址:https://dev.mysql.com/downloads/mysql/ 2.Select Operating System: 选择 Red Hat ,CentOS 是基于红帽的,Select OS Version: 选择 linux 7 3.选择 R 阅读全文
posted @ 2024-01-12 14:27
博小群
阅读(91)
评论(0)
推荐(0)
摘要:
下载nacos文件(linux版本): https://github.com/alibaba/nacos NACOS开机启动配置 安装完成nacos后进行配置开机启动。 1.编写开机启动文件 vim /lib/systemd/system/nacos.service 文件内容如下: [Unit] D 阅读全文
posted @ 2024-01-12 14:26
博小群
阅读(35)
评论(0)
推荐(0)
摘要:
零:前言 想要实现GitLab自动备份,可以借助GitLab自带的备份脚本以及Linux系统的crontab定时任务功能。 有些同志可能没接触过crontab——Linux系统中自带的一个定时任务管理工具,可以通过它设置系统定期执行某些命令或脚本。在下文相关部分我会再浅浅的说一下配置。 一、自动备份 阅读全文
posted @ 2024-01-12 14:24
博小群
阅读(851)
评论(0)
推荐(0)
摘要:
1.先清空删除原来的node.js 步骤: 在任意文件夹中输入cmd进入小黑窗 输入 where node 命令 找到控制面板彻底删除 卸载完成后下载 nvm 2.nvm的安装下载? github下载地址:https://github.com/coreybutler/nvm-windows/rele 阅读全文
posted @ 2024-01-12 14:23
博小群
阅读(242)
评论(0)
推荐(0)
摘要:
centos7的firewall命令: 添加80端口 firewall-cmd --zone=public --add-port=80/tcp --permanent (--permanent永久生效,没有此参数重启后失效) 重新载入 firewall-cmd --reload 查看 firewal 阅读全文
posted @ 2024-01-12 14:22
博小群
阅读(197)
评论(0)
推荐(0)