随笔分类 - *openEuler
摘要:欧拉系统(含centos等linux系统)修改文件,一直提示readonly,不让改。原因有可能是这个文件给锁定了。 解决方法: 使用以下两个命令: • chattr 改变文件属性 • lsattr 文件 查看文件属性 例如: • chattr +i 将文件锁住,任何用户都不能进行修改 • chat
阅读全文
摘要:1. 使用以下命令在 openEuler 操作系统的 root 用户下创建管理员用户: useradd -m -G root admin -m 表示创建用户的同时创建用户的主目录, -G 表示将用户添加到指定的用户组中 wheel是 openEuler 操作系统中的管理员用户组 root 是 ope
阅读全文
摘要:1. 安装nodejs dnf -y install nodejs npm config set registry https://registry.npmmirror.com -g npm config get registry https://registry.npmmirror.com 2.
阅读全文
摘要:使用git config命令在本地全局设置用户名和邮箱 git config --global user.name "username":全局添加用户名 git config --global user.email “someone@mail.com”:全局添加邮箱 git config --glo
阅读全文
摘要:1. 安装nodejs10 下载安装nvm https://github.com/coreybutler/nvm-windows/releases/download/1.1.9/nvm-setup.exe 安装配置nodejs C:\Users\Administrator>nvm install 1
阅读全文
摘要:[root@localhost ~]# cat /etc/os-release NAME="openEuler" VERSION="22.03 (LTS-SP2)" ID="openEuler" VERSION_ID="22.03" PRETTY_NAME="openEuler 22.03 (LT
阅读全文
摘要:1. 安装GitLab wget https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh sudo os=el dist=8 bash ./script.rpm.sh sudo EXTERNAL_
阅读全文
摘要:一、 系统优化(三个节点全部操作) 关闭防火墙 systemctl stop firewalld systemctl disable firewalld 关闭selinux echo "SELINUX=disabled" > /etc/selinux/config echo "SELINUXTYP
阅读全文
摘要:一、安装Nacos systemctl stop firewalld systemctl disable firewalld mkdir -p /home/nacos tar xvf nacos-server-2.1.2.tar mv nacos nacos8848 cd /home/nacos
阅读全文
摘要:一、系统优化 关闭防火墙 systemctl stop firewalld systemctl disable firewalld 关闭selinux sed -ri 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config setenf
阅读全文
摘要:一、系统优化 关闭防火墙 systemctl stop firewalld systemctl disable firewalld 二、安装Harbor wget https://github.com/goharbor/harbor/releases/download/v2.8.1/harbor-
阅读全文
摘要:一、系统优化 关闭防火墙 systemctl stop firewalld systemctl disable firewalld 二、安装Jenkins dnf -y install docker docker search jenkins docker pull jenkins/jenkins
阅读全文
摘要:ssh登陆不能在命令行中指定密码,sshpass 的出现则解决了这一问题。用 -p 参数指定明文密码,然后直接登录远程服务器,它支持密码从命令行、文件、环境变量中读取。 操作步骤: 一、关闭防火墙 systemctl stop firewalld systemctl disable firewa
阅读全文
摘要:修改SSH端口的主要原因是提高服务器的安全性。默认情况下,SSH服务运行在端口22上,因此攻击者和自动化脚本通常会针对此端口发起暴力破解攻击、密码猜测和其他恶意活动。 vim /etc/ssh/sshd_config Port 22 修改为: Port 2222 重启SSH服务 systemctl
阅读全文
摘要:步骤: 系统启动时,出现如下页面,按e进入内核编辑模式 进入如下页面 按下光标后,找到linux开头这一行,修改ro为rw,并在行尾添加init=/bin/sh,修改后效果如下,在crtl+x保存后开始 进入如下页面 执行修改密码操作,指令如下 # 修改root密码命令 echo '87654321
阅读全文
摘要:一、系统优化 关闭防火墙 systemctl stop firewalld systemctl disable firewalld 关闭selinux sed -ri 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config seten
阅读全文