Linux
文章平均质量分 67
白王_
半路出家
展开
-
在CentOS8上安装RabbitMQ3.9.7一条龙
下载erlang-24.1-1.el8.x86_64.rpm以及rabbitmq-server-3.9.7-1.el8.noarch.rpm。这两个RPM包均可以在rabbitmq的Github官方库中releases里面下载。erlang-rpm:https://github.com/rabbitmq/erlang-rpm/releasesrabbitmq-server:https://github.com/rabbitmq/rabbitmq-server/releases*注意选对系统,C.原创 2021-10-06 21:53:09 · 904 阅读 · 0 评论 -
prometheus+Grafana+Kafka+ELK的基础搭建过程以及Kafka告警的基本实现
设置宿主机可访问桥接的虚拟机在虚拟机[CentOS 8]上进行如下操作$ systemctl stop firewalld.service # 关闭虚拟机防火墙,需要root权限$ ifconfig # 查看虚拟机ip地址$ nohup ./node_exporter & # 启动各种应用,例:node_exporter$ netstat -tln # 查看监听端口此后可在宿主机上通过 http://虚拟机IP:9100/metrics 访问部署在虚拟机上的node_exporte原创 2021-02-26 18:05:19 · 2572 阅读 · 0 评论 -
Ubuntu18.04(WSL)安装Jupyter notebook,并在win10浏览器中打开jupyter
前提:已安装python3和pip3满足以上条件即可开始安装~安装jupyter【临时使用pip的清华镜像源,加快下载速度】$ pip3 install jupyter -i https://pypi.tuna.tsinghua.edu.cn/simple自动生成jupyter配置文件$ jupyter notebook --generate-config --allow-rootWriting default config to: /home/wang/.jupyter/jupy原创 2020-11-25 17:28:26 · 1779 阅读 · 7 评论 -
Ubuntu18.04运行mnist_cnn.py记录
# -*- coding: utf-8 -*- '''Trains a simple deep NN on the MNIST dataset.Gets to 98.40% test accuracy after 20 epochs(there is *a lot* of margin for parameter tuning).2 seconds per epoch on a K520 GPU.''' from __future__ import print_function imp.原创 2020-11-25 00:30:42 · 354 阅读 · 0 评论 -
ubuntu中科大源,比阿里云快多了
vi /etc/apt/sources.list打开上面文件,控制模式下输入:1,$d清空文件内容,然后复制粘贴以下内容:deb http://mirrors.ustc.edu.cn/ubuntu/ bionic main restricted universe multiversedeb-src http://mirrors.ustc.edu.cn/ubuntu/ bionic main restricted universe multiversedeb http://mirr.原创 2020-11-24 22:32:09 · 496 阅读 · 0 评论 -
Linux and more 工作笔记
$ adduser newUserName # 新建用户 $ passwd newUserName # 如果新建用户后,要为新用户创建密码,则用 passwd 用户名 ,注意要以root用户的权限来创建$ passwd # 如果是普通用户执行passwd 只能修改自己的密码$ shutdown -h 0 #<==O秒后关机$ shutdown -h now #<==现在关机$ shutdown -h 10 #<==10分钟后关机$ shut原创 2020-11-19 13:29:27 · 165 阅读 · 0 评论