博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
tactic remove project
阅读量:7082 次
发布时间:2019-06-28

本文共 2212 字,大约阅读时间需要 7 分钟。

hot3.png

http://community.southpawtech.com/tactic-setup_setup_remove-projects.html

删除 tacitc 的project必须要手动

要删除三个东西

project 的assets 文件夹

project的 database

project在数据库的tabel

Remove Projects

There is no user interface in TACTIC to remove a project. This is because the complete            removal of a project has some pretty significant consequences. When a project is created, a            number of elements are created. These are listed below.

Note

This task may need to be carried out by the Tactic System Admin as it involves                           manually accessing both the Tactic File system and the Tactic Database

In all of the following examples, <project_code> represents the code of the project                    when the project was created.

  • A database called <project_code>

  • An assets directory in <tactic_asset_dir>

  • Entry in the project table

A complete removal of a project should be handled with care. This is                              most often desirably when a project has been created in properly. It is one of the few                              operations that is not undo-able in TACTIC, so it is recommended to be careful when                              proceeding with the following steps. It is also recommended that a complete backup of                              TACTIC is performed before carrying out this process.

Remove the project directory
cd 
/sitesrm -rf 
Remove the database
psql -U postgres sthpwdrop database "
";
Remove the assets directory
cd 
rm -rf 
Remove the entry in the projects table in the                    database
psql -U postgres sthpwdelete from project where code='
';
Remove connected entities in the sthpw                    database;

In this process, Tactic may not allow removing a particular project due to there being                    child tasks, notes, snapshots, files, wdg_settings etc. If Tactic denies revoval because,                    for example there is a connection in the file table, you will need to do the                    following

delete from file where project_code='
';delete from snapshot where project_code='
';delete from task where project_code='
';delete from note where project_code='
';delete from wdg_settings where project_code='
';delete from pref_setting where project_code='
';

转载于:https://my.oschina.net/zsjasper/blog/349787

你可能感兴趣的文章
提高生产力的2个方法:软件复用和知识库
查看>>
Lesson 8 VMotion
查看>>
GPRS模块的使用(一)
查看>>
android 中 系统日期时间的获取
查看>>
我的友情链接
查看>>
golang获取命令行参数
查看>>
四款PHP加速器:APC、eAccelerator、XCache、Opcache比较, zabbix监控PHP APC缓存
查看>>
Axure RP使用
查看>>
[docker] Docker基础的学习与总结
查看>>
rman备份,曾经的手动备份controlfile文件无法删除
查看>>
准备好,大数据时代来了
查看>>
中介成科技服务业“短板”
查看>>
【Egret】TiledMap快速上手
查看>>
spring注解之@conditional
查看>>
基本算术计算的方法(搜狗面试题之一)
查看>>
php的swoole插件安装
查看>>
nginx rewrite 301 跳转 post 请求失效问题解决
查看>>
dd命令使用总结
查看>>
java连接sqL2008 数据库实例
查看>>
DPM 2012 SP1---恢复Exchange2013单用户邮箱
查看>>