Ok so i can install in my server Centos 64bit the litespeed and i am done?
yes
Does litespeed install mysql to upload my database?
Is there any tool to handle mysql like create a database a user for it and so on so i can import from ssh my database?
litespeed is independent product from mysql. it won't install mysql.
for MySQL installation on centOS 64bit:
1.install MySQL server:
yum install mysql-server.x86_64
2.install MySQL client:
yum install mysql.x86_64
3.run MySQL client to import your database from ssh. something like:
mysql -u #username# -p #database# < #dump_file#
MySQL support is out of our scope, above steps just for your reference.