How To Install Open Game Panel On Centos
What You Need ?
virtual private server
Operating System - Centos 6
SSH Putty Click Here To Download
1. Update your Vps
Code:
yum update
2.Disable The Firewall
Code:
systemctl disable firewalld
systemctl stop firewalld
sed -i 's|SELINUX=enforcing|SELINUX=disabled|' /etc/selinux/config
setenforce 0
service iptables stop
chkconfig iptables off
3. Check the Status of Firewall & Selinux
Code:
systemctl status firewalld
/sbin/iptables -L -n -v
/sbin/service iptables status
/sbin/service ip6tables status
4. Install the package and dependencies
Code:
wget http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
rpm -Uvh epel-release-6-8.noarch.rpm
rm -f epel-release-6-8.noarch.rpm
yum install mysql-server
5. Download ogp_panel-3264-1.noarch.rpm
Code:
wget -O ogp_panel-3264-1.noarch.rpm http://sourceforge.net/projects/hldstart/files/OpenGamePanel/Centos_Installers/ogp_panel-3264-1.noarch.rpm/download
6. Install the package
Code:
yum -y install ogp_panel-3264-1.noarch.rpm
7. start both services, httpd and mysqld
Code:
service httpd restart
chkconfig --levels 235 httpd on
service mysqld restart
chkconfig --levels 235 mysqld on
8. Setup Mysql
Code:
mysql_secure_installation
9.Change the user and group ownership of the panel files
Code:
chown -Rf apache:apache /var/www/html
10. Open your web browser and load phpmyadmin
Code:
http://[IP OF YOUR VPS]/phpmyadmin
11. Now Open And Check Your Game Panel
Code:
http://[IP OF YOUR VPS]/
12. You must remove the installation script
Code:
rm -f /var/www/html/install.php
Post a Comment