开发管理工具(日常)

  在日常开发中经常需要使用一些工具完成相应的开发工作

  1. Swoole-Crontab

    定时任务管理工具 - GitHub

   2. Gogs

     一款极易搭建的自助 Git 服务 - Github

  3.ShowDoc

    内部技术文档编写

  4. Ewomail

    邮件服务器软件

  5. rap2.0

    阿里妈妈前端团队出品的开源接口管理工具RAP第二代,它能给你提供方便的接口文档管理、Mock、导出等功能

    按照方法指导的方法进行项目的安装,成功打开页面,可以进行账号注册与登陆,进入可以查看并进行操作

    一般系统安装的时候,会预设一些数据在系统中,这个时候我们手动的对数据进行清空处理

因我是使用docker-compose 的方式进行安装与运行
所以可以查看运行中的容器,需要指定配置文件compose.yml
docker-compose ps

进入指定容器: docker exec -it 7f /bin/bash
进入数据库:mysql -uroot -p   密码为空
进入rap2库,查看表:
+----------------------------+
| Tables_in_rap2             |
+----------------------------+
| Interfaces                 |
| Loggers                    |
| Modules                    |
| Notifications              |
| Organizations              |
| Properties                 |
| Repositories               |
| Users                      |
| organizations_members      |
| repositories_collaborators |
| repositories_members       |
+----------------------------+


对于全部的表进行清空操作 truncate table. 表名 (注意:外键限制)

完成之后退出容器即可: ctrl+p+q

  6.redis-manager 

  redis集群可视化管理工具

  7.phpRedisAdmin

docker部署方式:https://hub.docker.com/r/erikdubbelboer/phpredisadmin

示例:
docker run --rm -it -e REDIS_1_HOST=myredis.host -e REDIS_1_NAME=MyRedis -p 80:80 erikdubbelboer/phpredisadmin

更多参数:
REDIS_1_HOST - define host of the Redis server
REDIS_1_NAME - define name of the Redis server
REDIS_1_PORT - define port of the Redis server
REDIS_1_AUTH - define password of the Redis server
ADMIN_USER - define username for user-facing Basic Auth
ADMIN_PASS - define password for user-facing Basic Auth

  8.yapi(推荐)

更好用的API管理工具

  9. spug(推荐)

码云地址: https://gitee.com/openspug/spug

Spug 面向中小型企业设计的轻量级无 Agent 的自动化运维平台,整合了主机管理、主机批量执行、主机在线终端、文件在线上传下载、应用发布部署、在线任务计划、配置中心、监控、报警等一系列功能。

  10.MinIO

对象存储服务

原文地址:https://www.cnblogs.com/xingxia/p/manager_tools.html