background picture of the home page

星尘の博客

CentOS 7 安装 MySQL

【Centos】 Centos 7.6 安装 MySQL 8 1. 查看当前MySQL的安装情况 查找之前是否安装了MySQL rpm -qa|grep -i mysql 1.1.卸载mysql 如果已经安装mysql,则需要先停止MySQL,再删除之前安装的MySQL ,把rpm -qa | g

thumbnail of the cover of the post

MAC 安装多个node.js,并进行版本切换

MAC 安装多个node.js,并进行版本切换 在实际项目开发中,不同的项目我们往往需要用到不同版本的node做支持,并且需要根据项目需要切换,以下就是常用的命令行。 Mac下使用n模块去安装多个指定版本的Node.js,并使用命令随时切换。 node中的n模块是,node专门用来管理 node版本

thumbnail of the cover of the post

iptables-debian

iptables-debian 安装 如果还未安装 iptables,可以通过以下命令安装: sudo apt-get update sudo apt-get install iptables 常用命令 清空现有的规则 #iptables -F 慎用 查看当前策略 iptables -nvL

thumbnail of the cover of the post

Nginx环境下http和https(ssl)共存的方法

Nginx 环境下实现 HTTP 和 HTTPS(SSL)共存的完整指南 在 Nginx 中配置 SSL 证书后,通常需要实现 HTTP 和 HTTPS 的共存或重定向。本文将详细介绍如何配置 Nginx,以支持 HTTP 和 HTTPS 的共存,以及如何将 HTTP 请求重定向到 HTTPS。 1

thumbnail of the cover of the post

Linux 开机自启方法

开机自启方法详解 在 Linux 系统中,实现开机自启动任务有多种方式,具体选择取决于系统版本、服务管理工具以及个人偏好。本文将详细介绍四种常见的开机自启方法,包括 rc.local、Cron Jobs、init.d 脚本以及 Systemd 定时器,并针对每种方法提供详细的操作步骤。 1. 使用

thumbnail of the cover of the post

Vue之v-指令

Vue之v-指令 1. v-text = ‘message’ 描述 主要作用是设置标签内的文本为message 一般来说会用message取代标签内的所有内容 可以用{{message}}插值表达式代替v-text 注:message可以是文本,变量,表达式 代码演示 <div id='app'>

thumbnail of the cover of the post

CentOS 7 安装yum

配置 CentOS 7 的 Yum 源 一、网络 Yum 源配置 1. 替换为阿里云 Yum 源 步骤一:备份本地 Yum 源文件 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo_bak 步骤二:获取阿里

thumbnail of the cover of the post

CentOS 7.6 安装 Redis

CentOS7.6 安装 Redis 一、到官网下载安装包 下载redis https://wwl.lanzout.com/b00l0xvwod 密码:68w0 或者去官网下载 https://redis.io/downloads 二、安装gcc 使用gcc --version命令查看是否安装了gc

thumbnail of the cover of the post

CentOS 创建并运行tomcat

CentOS 安装并运行 Tomcat 的完整指南 在 CentOS 系统中安装和运行 Apache Tomcat 是部署 Java Web 应用的常见需求。本文将详细介绍如何在 CentOS 上安装 Tomcat、运行 Tomcat 服务,并配置多个 Tomcat 实例以实现负载均衡。 1. 安装

thumbnail of the cover of the post

CentOS 创建普通用户并禁止root用户远程登陆

CentOS 创建普通用户并禁止 Root 用户远程登录的最佳实践 在服务器管理中,直接使用 root 用户进行远程登录存在较大的安全风险。为了避免潜在的安全威胁,我们可以通过创建普通用户并禁止 root 用户远程登录来增强服务器的安全性。本文将详细介绍如何在 CentOS 系统中实现这一目标。 1

thumbnail of the cover of the post