Uninstall XStudio

Windows

Uninstalling XStudio on a client computer is quite straight froward.


Click start > settings > control panel > add/remove programs
Search for ‘XStudio v*.*’, click the ‘Remove’ button and follow the instructions.







Linux

Just remove the destination folder where you initially unzipped the package.


MacOSX

Just remove the destination folder where you initially unzipped the package.





Uninstall the JRE

If you have no other program using JRE on your server, then you may want to uninstall it as well (we would advise to keep the JRE on your computer, thought).


Click start > settings > control panel > add/remove programs
Search for ‘Java 2 Runtime Environment, SE v1.*.*’, click the ‘Remove’ button and follow the instructions.






Uninstall the database

You have two alternative:
  • Your database server is used by some other products: Then, what you want to do is just deleting XStudio database and keep the database server up and running.
  • Your Database server is used only for XStudio: Then, you may want to uninstall the complete database server.



Delete the Database

You can use MySql Administrator to delete a database. If you prefer using the command line, you can use the following instructions to delete it:

C:mysqlbin> mysql.exe –u root –p mysql
Enter password: ******* (<- type ‘rootpwd’ here)
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 8 to server version: 4.0.18-nt

Type 'help;' or 'h' for help. Type 'c' to clear the buffer.

Mysql> drop database xstudio_db;
Query OK, 1 row affected (0.00 sec)

Mysql> exit
Bye
	



Delete the XStudio dedicated account (opt.)

If you had setup a dedicated account to access this database, you can use MySql Administrator to delete this account. If you prefer using the command line, you can use the following instructions to delete it:

C:mysqlbin> mysql.exe –u root –p mysql
Enter password: ******* (<- type ‘rootpwd’ here)
Welcome to the MySQL monitor.  Commands end with ; or g.
Your MySQL connection id is 8 to server version: 4.0.18-nt

Type 'help;' or 'h' for help. Type 'c' to clear the buffer.

Mysql> delete from user where user='xstudio';
Query OK, 1 row affected (0.00 sec)

Mysql> flush privileges;
Query OK, 0 row affected (0.00 sec)

Mysql> exit
Bye
	



Uninstall MySql

Stop the mysql service.


Click start > settings > control panel > add/remove programs
Search for ‘mysql’, click the ‘Remove’ button and follow the instructions.