哥伦布

博客园 首页 新随笔 联系 订阅 管理
上一页 1 ··· 5 6 7 8 9

2022年10月21日 #

摘要: 1、查看firewall服务状态 systemctl status firewalld 出现Active: active (running)切高亮显示则表示是启动状态。 出现 Active: inactive (dead)灰色表示停止,看单词也行。 2、查看firewall的状态 firewall- 阅读全文
posted @ 2022-10-21 23:14 Caraxes 阅读(65) 评论(0) 推荐(0)

摘要: 需要先安装Telnet服务,在安装OpenSSH会导致ssh不可用,需要启用后备连接方式。 安装Telnet服务 查询telnet是否安装 rpm -qa telnet 如果没有安装则执行以下语句安装 yum -y install telnet 查询telnet-server是否安装 rpm -qa 阅读全文
posted @ 2022-10-21 17:41 Caraxes 阅读(416) 评论(0) 推荐(0)

摘要: 清理阶段:1、服务停止:service mysqld stop 2、删除安装包列出安装包:rpm -qa | grep mysql删除安装包:rpm -e --nodeps 上一步取得的安装包的名称 3、删除安装目录:find / -name mysql4、删除所有找到的目录rm -rf 目录名称 阅读全文
posted @ 2022-10-21 17:02 Caraxes 阅读(298) 评论(0) 推荐(0)

2021年11月3日 #

摘要: 创建用户:create user 'username'@'%' identified by 'password'; 配置用户全部权限:grant all privileges on *.* to 'username'@'%' identified by 'password' with grant o 阅读全文
posted @ 2021-11-03 09:31 Caraxes 阅读(24) 评论(0) 推荐(0)

2017年12月14日 #

摘要: 1、安装Window2008 R2 并安装 SP1(我安装的是英文版,之前有安装中文版出错) 2、安装vc——redist_x64.exe(不然mongo运行不起来),没安装Sp1前,安装此部会出错。 3、运行MongoDB,默认位于:C\Program Files\MongoDb\Server\3 阅读全文
posted @ 2017-12-14 11:10 Caraxes 阅读(301) 评论(0) 推荐(0)

2017年12月8日 #

摘要: 1、安装Ubuntu16.04 运行sudo apt-get install mongodb安装Mongodb 如果没有MongoDB库,则运行sudo apt-get update更新库。 2、运行mongo测试是否安装完成。 阅读全文
posted @ 2017-12-08 09:31 Caraxes 阅读(102) 评论(0) 推荐(0)

上一页 1 ··· 5 6 7 8 9