Skip to content
Joonghoon Kim edited this page Nov 7, 2015 · 2 revisions

If you want to cleanup webida-server, you need to clear your db and all files installed/created by you or webida server. Just remove /home/webida & drop webida database. Or, to reset only, after stopping webida service(s),

$ cd /home/webida/webida-server/src/server
$ node ./app-uninstall.js
$ node ./fs-uninstall.js
$ node ./auth-uninstall.js 
$ cd /home/webida
$ rm -fr ./fs/* ./log/* ./sessions.*

Since tables are related with forein keys, you should run app-uinstall.js first, like example above. Or, aut-uinstall.js will fail.

App-uninstall.js will create a backup of your WEBIDA_APPS_PATH (/home/webida/apps) in same directory and will remove the apps directory. So, if you want to run app-install.js again, creaate apps directory again and set owner ship to webida:webida

Clone this wiki locally