[AKDC] - Installing Aura Kingdom Panel in CentOS

Results 1 to 10 of 10
  1. #1
    Account Upgraded | Title Enabled! fluxbox is offline
    MemberRank
    Sep 2004 Join Date
    KanagawaLocation
    303Posts

    [AKDC] - Installing Aura Kingdom Panel in CentOS

    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 http://mirror.webtatic.com/yum/el6/latest.rpm

    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 https://getcomposer.org/installer | php


    c] Move it to the local bin,
    mv composer.phar /usr/local/bin/composer
    Step 3 - Download the latest release and unpack.
    wget https://github.com/huludini/aura-kin...ive/master.zip
    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 https://api.github.com/repos/thephpl...7f95df2bfa5318, please create a GitHub OAuth token to go over the API rate limit
    Head to https://github.com/settings/tokens/n...016-02-22+0701

    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 by fluxbox; 02-03-16 at 02:00 AM.


  2. #2
    Web Developer Hulu is offline
    MemberRank
    Apr 2012 Join Date
    RaGEZONELocation
    326Posts

    Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    @fluxbox could you format it a little better? At the first glance it's extremely hard to understand.

  3. #3
    Apprentice AsunaS is offline
    MemberRank
    Feb 2016 Join Date
    14Posts

    Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    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

  4. #4
    Web Developer Hulu is offline
    MemberRank
    Apr 2012 Join Date
    RaGEZONELocation
    326Posts

    Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    They don't need screenshots, they're just commands.

  5. #5
    Valued Member GoldenHunter is offline
    MemberRank
    Nov 2013 Join Date
    RageZoneLocation
    127Posts

    Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    I have problem in setup website on step 3

    Says "Whoops, looks like something went wrong."

    Thanks

    Sorry for my bad english

  6. #6
    Web Developer Hulu is offline
    MemberRank
    Apr 2012 Join Date
    RaGEZONELocation
    326Posts

    Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    @Luffy90 as I stated in the release thread, please post any issues in the GitHub repository.

    Thanks!

  7. #7
    Valued Member GoldenHunter is offline
    MemberRank
    Nov 2013 Join Date
    RageZoneLocation
    127Posts

    Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    ok dude

  8. #8
    Apprentice mrcyclo is offline
    MemberRank
    Jan 2016 Join Date
    8Posts

    Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    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?

  9. #9
    Apprentice jeles is offline
    MemberRank
    Dec 2013 Join Date
    14Posts

    Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    i got this error..anyone can help me how to fix it..


    ----------------------
    solved forget configuration at my httpd
    Attached Thumbnails Attached Thumbnails 123.jpg  
    Last edited by jeles; 02-01-17 at 10:06 AM.

  10. #10
    Enthusiast padilha22 is offline
    MemberRank
    Mar 2013 Join Date
    26Posts

    sad Re: [AKDC] - Installing Aura Kingdom Panel in CentOS

    Hello, i have this error. How can fix this? please help me

    Screenshot by Lightshot



Advertisement