SA-MP Forums Archive
Help to running MySQL SA-MP server (LINUX)! - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Help to running MySQL SA-MP server (LINUX)! (/showthread.php?tid=562829)



Help to running MySQL SA-MP server (LINUX)! - VenomMancer - 12.02.2015

Helo guys
Help me how to running MySQL server on linux !

If helped +rep1 ...

#Sorryformybadenglish


Re: Help to running MySQL SA-MP server (LINUX)! - NoSoap - 12.02.2015

There are lots of tutorials on the web to help you (and I mean lots!)

Here's one that should be able to help you out.

http://www.thegeekstuff.com/2008/07/...ysql-on-linux/


Re: Help to running MySQL SA-MP server (LINUX)! - Jake187 - 12.02.2015

best place to learn how to install MySQL nowadays on Linux is using mySQLs official site itself and their own repos so you always get the latest updates ASAP.

CentOS / Red Hat / Fedora
http://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/

Debian / Ubuntu
http://dev.mysql.com/doc/mysql-apt-repo-quick-guide/en/


Re: Help to running MySQL SA-MP server (LINUX)! - VenomMancer - 12.02.2015

How to import or export database in linux ?


Re: Help to running MySQL SA-MP server (LINUX)! - Jake187 - 12.02.2015

to export
mysqldump -u [uname] -p[pass] db_name > db_backup.sql

to import
mysql -u username -p -h localhost DATA-BASE-NAME < db.sql

or install and use phpMyAdmin

I suggest you start to ****** these questions it's a lot faster for a quick easy answer.


Re: Help to running MySQL SA-MP server (LINUX)! - VenomMancer - 12.02.2015

phpMyAdmin on linux ?

btw my linux is Centos 5


Re: Help to running MySQL SA-MP server (LINUX)! - Jake187 - 12.02.2015

Quote:
Originally Posted by VenomMancer
Посмотреть сообщение
phpMyAdmin on linux ?

btw my linux is Centos 5
Yes phpMyAdmin is a web interface which can be used to manage your mySQL databases easier and allow others to also manage it without access to shell.

Also if I were you I'd upgrade to CentOS 6 or 7 if you're running a new server because CentOS 5 stopped receiving updates almost a year ago and is only supported for maintenance.


Re: Help to running MySQL SA-MP server (LINUX)! - VenomMancer - 12.02.2015

Okay bro