Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

How to Install Aura Kingdom Panel on CentOS

Experienced Elementalist
Joined
Sep 12, 2004
Messages
287
Reaction score
32
Guide on how-to-install Hulu's Aura Kingdom Panel in CentOS (aka Eperty's Release File/VM).

Step 1 - Update perl installation.
a] Remove old php version,
yum list installed | grep php
yum remove php.x86_64 php-cli.x86_64 php-common.x86_64 php-gd.x86_64 php-ldap.x86_64 php-mbstring.x86_64 php-mcrypt.x86_64 php-mysql.x86_64 php-pdo.x86_64

b] Install latest repository,
rpm -Uvh

c] Install new php version,
yum list available | grep php56
yum install php56w.x86_64 php56w-cli.x86_64 php56w-common.x86_64 php56w-devel.x86_64 php56w-gd.x86_64 php56w-mysql.x86_64 php56w-pdo.x86_64 php56w-pear.noarch php56w-pecl-memcache.x86_64 php56w-pgsql.x86_64 php56w-pspell.x86_64 php56w-snmp.x86_64 php56w-xml.x86_64 php56w-xmlrpc.x86_64 php56w-mbstring.x86_64
Step 2 - Install composer.
a] Go to /tmp folder,
cd /tmp

b]Download the composer.phar file,
yum install curl
curl -sS | php


c] Move it to the local bin,
mv composer.phar /usr/local/bin/composer

Step 3 - Download the latest release and unpack.
wget
yum install unzip
unzip aura-kingdowm-web-master.zip
mv aura-kingdom-web-master /var/www/

Step 4 - Setup Aura Kingdom Web.
a] Go to aura-kingdom-web directory,
cd /var/www/aura-kingdom-web-master
b] Rename the .env.sample file,
mv .env.sample .env
c] Edit the .env,
nano .env
* if nano is not installed, yum install nano

d] Modify the info required,
e] Set permissions,
chmod -R 777 storage/app/
chmod -R 777 storage/framework/
chmod -R 777 storage/logs/
chmod -R 777 bootstrap/cache/
chmod -R 777 .env

Step 5 - Installation proper.
a]Run the command,
composer install
* Reference tail-end of a successful build
------------------------------------------
> php artisan clear-compiled
> php artisan optimize
Generating optimized class loader
Compiling common classes
[root@AK aura-kingdom-web-master]#
------------------------------------------

php artisan migrate --seed
* Reference tail-end of a successful build
------------------------------------------
Seeded: SettingsTableSeeder
Seeded: ApplicationTableSeeder
Seeded: ArticlesTableSeeder
Seeded: RolesTableSeeder
Seeded: PermissionsTableSeeder
[root@AK aura-kingdom-web-master]#
------------------------------------------

php artisan key:generate
* Reference tail-end of a successful build
------------------------------------------
Could not fetch , please create a GitHub OAuth token to go over the API rate limit
Head to

b]Click the link above (the one on your screen), you need to register/logon your GitHub account and it will take you to a page with the generated token,

to retrieve a token. It will be stored in "/root/.composer/auth.json" for future use by Composer.
Token (hidden): > Paste the generated token here
Token stored successfully.
------------------------------------------


Step 6 - Configure web server (Apache).
a] Minimum configuration required
nano /etc/httpd/conf/httpd.conf
<VirtualHost *:80>
ServerAdmin admin@your-domain.com
DocumentRoot /var/www/aura-kingdom-web-master/public
ServerName your-domain.com
ErrorLog logs/your-domain.com-error_log
CustomLog logs/your-domain.com-access_log common
</VirtualHost>
<Directory "/var/www/aura-kingdom-web-master/public/">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>

b] Restart apache,
apachectl restart

Step 7 - Go to your web browser and type the IP or DOMAIN and follow the simple 4-step wizard.
 
Last edited:
Newbie Spellweaver
Joined
Feb 6, 2016
Messages
13
Reaction score
9
acoording to Hulu, maybe you could add some screenshot, in that way some newbie centos user will understand a much more ~ just a suggestion tho
 
Junior Spellweaver
Joined
Nov 30, 2013
Messages
144
Reaction score
14
I have problem in setup website on step 3

Says "Whoops, looks like something went wrong."

Thanks

Sorry for my bad english
 
Newbie Spellweaver
Joined
Jan 18, 2016
Messages
9
Reaction score
0
Code:
[root@Have ~]# yum list available | grep php56



 One of the configured repositories failed (Unknown),
 and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:


     1. Contact the upstream for the repository and get them to fix the problem.


     2. Reconfigure the baseurl/etc. for the repository, to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the previous distribution release still work).


     3. Disable the repository, so yum won't use it by default. Yum will then
        just ignore the repository until you permanently enable it again or use
        --enablerepo for temporary usage:


            yum-config-manager --disable <repoid>


     4. Configure the failing repository to be skipped, if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,
        so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though, this is often a nice
        compromise:


            yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true


Cannot find a valid baseurl for repo: webtatic/x86_64

How can I fix that? :*:
 
Newbie Spellweaver
Joined
Dec 15, 2013
Messages
14
Reaction score
0
i got this error..anyone can help me how to fix it..


----------------------
solved forget configuration at my httpd
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Mar 19, 2013
Messages
26
Reaction score
0
fluxbox - How to Install Aura Kingdom Panel on CentOS - RaGEZONE Forums
Hello, i have this error. How can fix this? please help me

 
Back
Top