[RESOLVED] Can i use litespeed without cpanel?

ASTRAPI

Well-Known Member
#3
Ok so i can install in my server Centos 64bit the litespeed and i am done?

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?
 

NiteWave

Administrator
#4
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.
 

NiteWave

Administrator
#6
during mysql installation, it won't ask you creating a user or database.
you create a user or database by run MySQL client. i.e.,

~>mysql

upon installation, you already have a user "root" and no password. the mysql installation will prompt you to create a password for "root" user.

It's time you read mysql client document and get what you concern.
here's the official link:
http://dev.mysql.com/doc/refman/5.1/en/mysql.html
 
Top