
centos
centos
easyboot
愿断一切恶,愿修一切善。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
CentOS 安装pstree
yum -y install psmisc原创 2020-10-16 15:58:44 · 1613 阅读 · 0 评论 -
centos hostname修改方法
1.临时修改方法 2.永久修改方法原创 2020-10-16 13:30:43 · 184 阅读 · 0 评论 -
vi/vim键盘图
原创 2020-10-16 09:00:59 · 181 阅读 · 0 评论 -
CentOS Linux 常用命令
原创 2020-10-15 22:42:58 · 114 阅读 · 0 评论 -
elasticsearch-head的安装
github的安装方法如下图 https://github.com/mobz/elasticsearch-head 安装过程中有错误信息 之行下面语句就ok了,如果不行多执行一次 npm cache clean --force原创 2020-09-30 20:16:55 · 157 阅读 · 0 评论 -
Linux CentOS下安装git
https://git-scm.com/ 最新的版本是2.28.0 将下载的文件上传到CentOS的/usr/local中,如下图 解压 tar -zvxf git-2.28.0.tar.gz原创 2020-09-29 23:13:41 · 124 阅读 · 0 评论 -
virualbox中的CentOS使用无线网卡上网的设置方法
原创 2020-09-29 22:05:47 · 118 阅读 · 0 评论 -
CentOS 安装 Elasticsearch
1.下载地址 https://www.elastic.co/cn/downloads/elasticsearch 我下载的是linux大小是302M ,最新的版本是7.9.2 2.将下载的文件拷贝到Linux虚拟机中 /user/local目录中 解压 tar -zxfelasticsearch-7.9.2-linux-x86_64.tar.gz 设置es用户,默认root不能运行elasticsearch 1.先创建bigdata组,并指定组id为1024 grou...原创 2020-09-29 20:26:41 · 156 阅读 · 0 评论 -
centos安装MySQL
安装MySQL https://www.mysql.com/downloads/ 依次进入mysql下载界面 1.Download and add the repository, wget https://dev.mysql.com/get/mysql80-community-release-el8-1.noarch.rpm sudo rpm -ivh mysql80-community-release-el8-1.noarch.rpm 2.Install MySQL as..原创 2020-09-22 11:08:38 · 126 阅读 · 0 评论 -
centos安装RabbitMQ
安装erlang https://www.erlang.org/downloads 查看download链接地址 通过rpm安装 1、安装依赖项 yum install -y epel-release 2、下载rpm包 [root@bogon ~]# wget https://packages.erlang-solutions.com/erlang/rpm/centos/8/x86_64/esl-erlang_23.0.3-1~centos~8_amd64.rpm ...原创 2020-09-22 09:54:44 · 192 阅读 · 0 评论 -
centos 关闭防火墙
1.查看防火墙 firewall-cmd --state 2.停止防火墙 systemctl stop firewalld.service 3.开机禁止防火墙 systemctl disable firewalld.service原创 2020-09-21 13:17:03 · 134 阅读 · 0 评论 -
centos 安装wget
yum -y install wget原创 2020-09-21 11:58:36 · 597 阅读 · 0 评论 -
docker中的.net core 版本设置
https://github.com/dotnet/installer原创 2020-09-15 13:41:45 · 290 阅读 · 0 评论 -
centos守护进程supervisor安装
supervisor的安装 yum install epel-release yum install -y supervisor 安装成功后的界面 生成配置文件 echo_supervisord_conf > /etc/supervisord.conf 修改配置文件/etc/supervisord.conf加入内容如图 设置开机自启动 systemctl enable supervisord ...原创 2020-09-15 12:33:42 · 196 阅读 · 0 评论 -
centos下部署 .net core web
安装前准备 yum update yum install net-tools 安装libicu依赖 yum install libunwind libicu 您需要注册Microsoft签名密钥并添加Microsoft产品提要 sudo rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm 安装dotnet-sdk 安装前查询一下 yum search dotnet 我安.原创 2020-09-15 10:22:12 · 267 阅读 · 0 评论 -
在centos上安装docker
在centos中输入下面的命令 curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 安装完成后如下图所示原创 2020-09-01 14:46:55 · 116 阅读 · 0 评论 -
centos 修改为自动获取IP地址
1登陆root 2输入 cd /etc/sysconfig/network-scripts 3 ls看到ifcfg-ens192 ,不同的电脑可能不相同 4使用vi ifcfg-ens192修改 ONBOOT=yes 按esc输入:wq退出编辑 输入 service network restart,或者重新启动centos 输入ifconfig查看ip地址 ...原创 2020-09-01 14:36:11 · 2639 阅读 · 0 评论