Can anyone link me to a good video on how to setup MySql? I'm using a dedicated server, if that makes a difference. I am also looking for a few plugins: 1. I need a plugin that can Sync players inventory and xp over cross servers. 2. I need a plugin that has a global chat. I also intend to implement BanManager. Any help is appreciated, thanks!
If you are using centos then follow these instructions. LAMP https://www.digitalocean.com/commun...e-phpmyadmin-with-apache-on-a-centos-7-server phpMyAdmin https://www.digitalocean.com/commun...e-phpmyadmin-with-apache-on-a-centos-7-server
I recommend using CentOS 6. Here's a list of all of the commands you need to run in order to setup apache (web server), mysql server 5.5, php 5.6, and phpmyadmin. Just run them in order. You will need to run the mysql installation script after it's done to set a root password, just run "/usr/bin/mysql_secure_installation" in SSH after it's all done. Make sure to right click and copy the phpmyadmin download link since the forums shortens it automatically. Sorry if I missed something. rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm yum update -y yum install -y zip unzip mysql55w mysql55w-server php56w php56w-opcache php56w-mysql php56w-gd php56w-mbstring httpd service httpd start service mysqld start wget http://sourceforge.net/projects/php...n/4.4.0/phpMyAdmin-4.4.0-english.zip/download unzip phpmyad rm -rf download mv phpMyAdmin* phpmyadmin mv phpmyadmin /var/www/html/phpmyadmin mv /var/www/html/phpmyadmin/config.sample.inc.php /var/www/html/phpmyadmin/config.inc.php setenforce 0