随笔分类 -  centos7

摘要:使用储存库安装 EMQ X 安装所需要的依赖包 sudo yum install -y yum-utils device-mapper-persistent-data lvm2 使用以下命令设置稳定存储库,以 CentOS7 为例 sudo yum-config-manager --add-repo 阅读全文
posted @ 2020-12-23 23:09 anobscureretreat 阅读(995) 评论(0) 推荐(0) 编辑
摘要:下载地址: https://download.libsodium.org/libsodium/releases/ 支持以下加密方式 salsa20 and chacha20 下载: Wget https://download.libsodium.org/libsodium/releases/libs 阅读全文
posted @ 2020-12-23 09:55 anobscureretreat 阅读(795) 评论(0) 推荐(0) 编辑
摘要:下载 [root@xxx local]# mkdir maven [root@xxx local]# cd maven/ [root@xxx maven]# [root@xxx maven]# wget http://mirrors.hust.edu.cn/apache/maven/maven-3/ 阅读全文
posted @ 2020-12-11 00:09 anobscureretreat 阅读(61) 评论(0) 推荐(0) 编辑
摘要:code yum install -y unzip zip 阅读全文
posted @ 2020-08-19 10:50 anobscureretreat 阅读(729) 评论(0) 推荐(0) 编辑
摘要:步骤 阅读全文
posted @ 2019-09-29 22:30 anobscureretreat 阅读(737) 评论(0) 推荐(0) 编辑
摘要:链接:https://pan.baidu.com/s/1rSiW76ayBQ-QBIshjzgpng 提取码:ky80 阅读全文
posted @ 2019-09-29 01:43 anobscureretreat 阅读(400) 评论(0) 推荐(0) 编辑
摘要:参考: https://blog.csdn.net/y_bccl27/article/details/88711324https://www.cnblogs.com/wlwl/p/9717973.htmlhttps://www.cnblogs.com/bigfly277/p/11193829.htm 阅读全文
posted @ 2019-09-26 19:42 anobscureretreat 阅读(374) 评论(0) 推荐(0) 编辑
摘要:安装apache yum install httpd vi /etc/httpd/conf/httpd.conf 修改默认端口为81 service httpd start netstat -nltp [root@xxx html]# netstat -nltp Active Internet connections (only servers) Proto Recv-Q Send-Q Local 阅读全文
posted @ 2019-09-06 23:45 anobscureretreat 阅读(151) 评论(0) 推荐(0) 编辑
摘要:http://isoredirect.centos.org/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1810.iso 阅读全文
posted @ 2019-08-20 23:13 anobscureretreat 阅读(209) 评论(0) 推荐(0) 编辑
摘要:下载,选择centos7 64位版本 解压 移动目录 环境配置 写入如下内容 export JAVA_HOME=/usr/local/java/jdk1.8.0_202export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jare 阅读全文
posted @ 2019-02-20 01:42 anobscureretreat 阅读(1770) 评论(0) 推荐(0) 编辑
摘要:打开tomcat的bin目录下的setclasspath.sh,手动加入两个环境变量 参考: https://blog.csdn.net/to_baidu/article/details/52848620 https://www.cnblogs.com/purplestone/p/3964207.h 阅读全文
posted @ 2019-02-20 01:21 anobscureretreat 阅读(1081) 评论(0) 推荐(0) 编辑
摘要:需要Java环境 官网下载安装包 解压 移动目录 配置自启动,切换至Tomcat的bin目录执行vi setenv.sh,并按i进入编辑模式,拷贝以下代码粘贴 添加权限 配置service 加入如下内容 配置环境变量 加入如下代码 使其生效 关闭防火墙 修改端口 将8080改为你想要的端口即可 配置 阅读全文
posted @ 2019-02-20 01:13 anobscureretreat 阅读(1033) 评论(0) 推荐(0) 编辑
摘要:安装 然后重新编译安装python3: 参考: https://blog.csdn.net/u012063703/article/details/50460107 https://www.cnblogs.com/xiaoguozi0218/articles/8304005.html https:// 阅读全文
posted @ 2019-02-17 22:40 anobscureretreat 阅读(748) 评论(0) 推荐(0) 编辑
摘要:查看端口被哪个进程使用的命令 参考: https://blog.csdn.net/u010886217/article/details/83626236 https://blog.csdn.net/windflybird/article/details/80157993 阅读全文
posted @ 2019-02-17 20:29 anobscureretreat 阅读(536) 评论(0) 推荐(0) 编辑
摘要:curl工具工具的主页:https://curl.haxx.se/NAMEcurl - transfer a URL SYNOPSIScurl [options] [URL...] DESCRIPTIONcurl is a tool to transfer data from or to a ser 阅读全文
posted @ 2019-02-17 20:26 anobscureretreat 阅读(2656) 评论(0) 推荐(0) 编辑
摘要:1.firewalld的基本使用 启动 关闭 查看状态 开机禁用 开机启用 2.systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。 启动一个服务:systemctl start firewalld.service关闭一个服务:sy 阅读全文
posted @ 2019-02-17 20:23 anobscureretreat 阅读(173) 评论(0) 推荐(0) 编辑
摘要:使用yum安装python-pip,但是报错,说没有可用的包 安装epel源 然后再安装 使用时输入pip2。 参考: https://www.cnblogs.com/zd520pyx1314/p/7935671.html 阅读全文
posted @ 2019-02-17 16:21 anobscureretreat 阅读(2959) 评论(0) 推荐(0) 编辑
摘要:查看系统是否已经安装git yum安装git 安装成功 卸载git 参考: https://www.cnblogs.com/liaojie970/p/6253404.html 阅读全文
posted @ 2019-02-17 15:40 anobscureretreat 阅读(271) 评论(0) 推荐(1) 编辑
摘要:下载redis安装包 解压压缩包 yum安装gcc依赖 跳转到redis解压目录下 编译 安装 测试是否能够启动redis 移动目录 修改配置文件(后台运行) 将 修改为 使用配置文件启动 关闭redis 首先使用ps -aux | grep redis查看redis进程 使用kill命令杀死进程 阅读全文
posted @ 2019-02-17 12:36 anobscureretreat 阅读(385) 评论(0) 推荐(0) 编辑
摘要:输入ip addr 确认IP地址是否设置正常,设置好如下所示,如果没有获取到IP地址则设置一个即可。 确认ifconfig命令是否未安装 安装net-tool插件,此插件中带有此命令 等待安装完成,再次输入ifconfig,成功。 阅读全文
posted @ 2019-02-16 22:30 anobscureretreat 阅读(613) 评论(0) 推荐(0) 编辑