Archive

Gaming PANEL ile Gaming VDS Arasındaki Farklar?

Gaming PANEL ile Gaming VDS Arasındaki Farklar Nelerdir? Evet, çoğu müşterimizin en sık sorduğu sorulardan bir tanesine detalı şekilde cevap verelim. Sipariş vermeden önce nasıl bir alt yapı kullanmak istediğinize karar vermelisiniz. Karar vermenize yardımcı olmak için yazımızda detaylı şekilde size bilgi vereceğim.

Bir oyun serverı açmaya karar verdiniz ama Gaming PANEL mi seçmeliyim? yoksa Gaming VDS mi seçmeliyim? diye düşünebilirsiniz. Bu sorunun cevabını bulmanız için ilk önce Gaming PANEL ve Gaming VDS nedir onları bir öğrenelim.

Gaming PANEL nedir?

Eğer ilk defa server açıyorsanız ve çok fazla teknik bilgiye sahip değilseniz tercih etmeniz gereken yönetim sistemi Gaming PANEL olmalıdır. Çünkü Gaming PANEL sisteminde bir çok ayar otomatiktir. Yani sizin serverı ilk açtığınızda yapmanız gereken kurulumlar ve ayarlar Gaming PANEL tarafından otomatik olarak yapılmaktadır.

Gaming PANEL ile oyun serverının dosyalarını kurmanıza gerek yoktur.
Gaming PANEL ile oyun serverının dosyalarını kolayca yeniden yükleyebilirsiniz.
Gaming PANEL ile oyun serverının ayarlarını kolayca değiştirebilirsiniz.
Gaming PANEL ile oyun serverının dosyalarını otomatik şekilde güncelleyebilirsiniz.

Bu liste uzarda gider. Siz ana noktayı anladınız. Gaming PANEL kullanımı kolaydır. Gaming PANEL ile teknik kısmı düşünmenize gerek yoktur.

Gaming VDS nedir?

Eğer daha önce server açmışsanız ve server konusunda bilginiz varsa tam size gerekli olan server yönetim sistemidir. Çünkü Gaming VDS sistemi ile serverınızın tüm ayarlarına erişebilirisniz. Tam kontrol size aittir. İstediğiniz gibi her dosyaya müdahale edebilirsiniz. Kendi bilgisayarınız gibidir. Uzak masaüstü erişimi ile Gaming VDS’e bağlanıp gerekli her türlü kurulumu yapabilirsiniz.

Gaming VDS’de tüm kurulum müşteriye aittir. Oyun serverının dosyalarını kurmak, Oyun serverının dosyalarını güncellemek veya Oyun serverının ayarlarını yapmak gibi tüm işlemler kullanıcı tarafından gerçekleştirilebilir.

Gaming VDS ile istediğiniz oyun serverını kurabilirsiniz.
Gaming VDS ile istediğiniz ayarı yapabilirsiniz.
Gaming VDS ile server kontrolü ve tam erişimi size aittir.
Gaming VDS ile 2. bir bilgisayara sahip olursunuz.

Bu liste uzarda gider. Gaming VDS ileri düzey kullanıcılar içindir. Oyun serverınızı açacağınız evinizde kullandığınız 2. bir bilgisayar gibidir, güçlüdür ve işlevseldir.

What is Hytale? Completely New Minecraft-Like Game Coming Soon!

Hypixel. Have you ever heard news from them? Probably yes because you are reading this article right now.

So, what is Hytale?

Hytale is a Minecraft-Like game which will be created from Hypixel. Hypixel is the biggest Minecraft server in the history. They have lots of mini games, fun games and more. You can play with your friends for free! Server’s IP address is: hypixel.net

As a result of being best Minecraft server, they decided to create a completely new game; Hytale! Hypixel has BIGGEST team in the Minecraft universe. They tried all plugins, all mods, all methods to make Minecraft a better game. Now, it looks like this was simply not enough for them. They are creating an awesome game, HYTALE!

Hytale will have awesome mini games, big games, multiplayer and single player games inside. Graphics will be awesome and there will be various monsters in game. As you know, in normal Minecraft, there are not much monsters which you can fight. But in Hypixel, we are going to see lots of different monsters and we will be able to fight with them. We will get inside awesome caves, we will discover new places and more! Actually, we are really excited about how Hytale will become after release. Hypixel team didn’t revealed lots of information about game, so all we can do is just imagine, we can’t do anything more than that.

So, we are going to play an awesome game as soon as possible in future. They are working hard and they’re give us some information about incoming game. Let’s wait and see this amazing game!

403 User Rate Limit Exceeded Error | SOLUTION – Google Drive Fixed !

If you are getting; googleapi User Rate Limit Exceeded,  gdrive 403 Rate Limit Exceeded we have a solution for you.

We have been using Gdrive to upload some of our essential files for many months. Recently, we noticed that our daily backup was not working as expected. Gdrive error logs show us, Failed to get file: googleapi: Error 403: Rate Limit Exceeded, rateLimitExceeded and Failed to get file: googleapi: Error 404: File not found: Failed., notFound errors.

 

We tried rebooting our servers refreshing our auth logins etc. none of them fixed our gdrive User Rate Limit Exceeded errors. The problem was an API related issue so we need to create a new API and build Gdrive from source. The solution is simple but takes times, If you are figuring out how to do it. However, It took a couple of our hours to do it but it will take minutes of your time, if you follow this guide you will solve your google drive 403 Rate Limit Exceeded error.

 

PS: We applied all the steps on our Centos server, but it will be the same with all platforms.

 

Part 1

Carefully follow the steps to fix google drive User Rate Limit Exceeded Error.

Downloading and Installing GO

You will need root privileges or sudo for ubuntu.

Download the files :

To download the Go binary on your linux server you can use wget or curl:

wget https://dl.google.com/go/go1.11.5.linux-amd64.tar.gz

You need to extract Go binary files from go1.11.5.linux-amd64.tar.gz After successful extraction; you will have a go named folder. You should move it to /usr/local location because it is recommended by publishers.

tar -xzf go1.11.5.linux-amd64.tar.gz
mv go /usr/local

 

Creating Workspace Folder for Go

For better-organized projects, create a projects folder with bin and src folder together in user home directory.

 

mkdir  -p ~/projectss/{bin,src}

 

Setting Environment Variables for Go

We need to set a $PATH Environment variable for Go to use it like any other commands in our UNIX system.

Create path.sh script in /etc/profile.d directory location

nano /etc/profile.d/path.sh

Add the following to the file, save and exit. (/etc/profile.d/path.sh)

/usr/local/go/bin

Additionally, we need to define GOPATH and GOBIN Go environment variables in the user’s  .bash_profile file to point to the recently created projects folder. GOPATH is our Go source files GOBIN is our compiled Go binary files. Open the .bash_profile file:

nano ~/.bash_profile

Append the following to the end of the file, save and exit: (~/.bash_profile)

export GOBIN="$HOME/projects/bin"
export GOPATH="$HOME/projects/src"

Apply to changes in our system; we need to update profiles with source command

 

source /etc/profile && source ~/.bash_profile

Let’s test our Go if it is working

[root@host ~]# go version 
go version go1.11.5 
linux/amd64

We needed to have Go in our system to compile Gdrive so that’s all for installing Go. We can continue Part 2 where we will compile Gdrive from source files.

Part 2

We will continue to solve googleapi 403 Rate Limit Exceeded error. Keep following the steps…

Creating Google API for Gdrive

If you see these errors while running Gdrive on your system:

Failed to get file: googleapi: Error 403: Rate Limit Exceeded, rateLimitExceeded

You need your own Google Drive API to use with Gdrive so you can get information from your usages. Google API’s provide  Quotas Information which is very helpful in our situation. We need to know if we Exceed our limits.

Visit https://console.developers.google.com/apis/dashboard

Top of the page, click Select a project then New Project. 

Fill Project name as you want it.

Google API New Project

 

Choose your newly created project at the top of the page. At the dashboard, click  ENABLE APIS AND SERVICES

It will redirect you API Library. Search Drive keyword and find Google Drive API. You need to enable Google Drive API to use it in your project.

 

Add and Enable Google Drive API

We successfully add Google Drive API in our project. Gdrive requries Google Drive API’s credentials. Let’s create one.

 

Google Drive API Credentials

Create Credentials Details and choose the option ” Help me choose.”

Google API Credentials

Choose the settings as I did:

Google API Credentials Settings

 

I filled Client Name as same as my API Name.

Google API Name

Next step, fill your mail address and write a Product name.

 

Google API OAuth Name

After that, It will give us the Credentials we need.

 

Google Drive Error 403 User Rate Limit Exceeded Solution

Click download and done.

It will download a JSON file which contains our Credentials for Gdrive. Open the client_id.json file with a text editor. Notepad++ is a good option.

You will see,

“client_id”:”205xxxxxxxxx-22imoxxxxxxxxxxxxxxxxpsm.apps.googleusercontent.com”

“client_secret”:”NxxxxxxG-4HxxxxxxxxxxxxxxxwZA”

We need that two value so note it.

 

Getting Source Files of Gdrive

We need Gdrive projects files from Github so that we can compile it with Go. Let’s download files into our ~/projects/ folder that we created earlier.

 

cd ~/projects/

Use GO to download Gdrive src files from GitHub.

 

go get github.com/prasmussen/gdrive

We need to change Credentials in handlers_drive.go where is located in the gdrive folder.

 

cd ~/projects/src/src/github.com/prasmussen/gdrive/

nano handlers_drive.go

const ClientId = "3671xxxxxxxxxxxxxxxxxxxxxxeg.apps.googleusercontent.com"
const ClientSecret = "1qsNxxxxxxxxhoO"

 

No More googleapi User Rate Limit Exceeded

Change ClientId and ClientSecret with your own Google Drive API Credentials form client_id.json 

Save and exit.

We are ready to build Gdrive.

Let’s build it:

 

cd ~/projects/src/src/github.com/prasmussen/gdrive/
go build

 

After the build, you will see gdrive executable file. Copy it to /usr/bin/ folder to use it.

 

cp gdrive /usr/bin/gdrive

 

Note: If you had gdrive on your system, you need to delete old token_v2.json.

 

cd ~/.gdrive

rm token_v2.json

Now, we have gdrive installed in our system with our Google Drive API settings.

Let’s test it.

 

gdrive list

 

If it is your first time to use Gdrive or deleted token file, Gdrive needs Authentication from you.

 

Authentication needed
Go to the following url in your browser:

Enter verification code:

Paste the link in your browser and get the verification code.

 

Execute gdrive list again

We Solved google drive 403 Rate Limit Exceeded

That is it is working without errors!

 

Let’s check if our API is working too.

Gdrive Quotas – gdrive User Rate Limit Exceeded

Yes ! it is working too. Now we can see our Quota limit.

For Windows, please check this: https://github.com/prasmussen/gdrive/issues/426#issue-404775200

If you have any question, please leave a comment below. We will answer them ASAP.

 

Thanks.

 

Minecraft Keşif Güncellemesi Bedava

Minecraft hazine avcılarına müjde! Keşif güncellemesi yayımlandı! Hatalarından arındırılan güncelleme sizlere sunuluyor!

Minecraft Bedava Güncelleme : Keşif (Exploration)

Minecraft maceralarınızda yardımcı olabilecek yenilikler geliyor oyuna bu güncelleme ile. Minecraft oyununa sahip olanların tamamen bedava oynayabileceği bu güncelleme ile maceralarınıza yenilikler katın! Efsanevi eşyalarınızı taşıması için artık lamalar var. Bu lama’lara sandık bağlayabiliyor ve yanımızda gezdirebiliyoruz. Maceralarımız sırasında bulduğumuz şeyleri yanımızda taşıma konusunda problem de yaşamıyoruz böylece. Ayrıca lamalar bizi koruyabiliyor. Yaklaşan düşmanlara tükürerek onları öldürebiliyorlar bile! Ne kadar iğrenç de olsa işe yarayacağı kesin!

minecraft-bedava-guncelleme-kesift-exploration-lama

Haritada yeni bölgeler de var artık. İçinde köylerdeki köylülerin kötü kuzenlerinin yaşadığı Orman Köşkleri ve dikenli koruyucular tarafından etrafı sarılı Okyanus Anıtları. Bu iki alanın da fethi zor ama ödülleri tatmin edici. Köylülerin kötü kuzenleri sizlere yerden kazıklar çıkarmak veya kendilerine küçük çirkin yardımcılar çıkarmak gibi büyüler kullanabilir veya baltalarını kafanıza vurmak için üstünüze koşabilir. Bu durumlara hazırlıklı gitmenizi öneriyoruz. Eğer bu arkadaşları başarıyla alt edebilirseniz çok özel bir ödül sizleri bekliyor; Ölümsüzlük Totemi. Bu totem sizi ölümden kurtarabilen tek eşya! Ama unutmayın; ölmeden önce bu eşyayı elinizde tutuyor olmanız gerekiyor! Yani kazanamayacağınızı anladığınız bir savaştan kaçarken ya da muzip bir arkadaşınız sizi uçurumdan aşağı ittiği zaman bu eşyayla bakışmanız gerekiyor.

Peki bu yerleri ve daha pek çoğunu nasıl bulacaksınız? Yeni gelen köylü ile! Haritacı olan bu köylü size pusula ve zümrüt karşılığında hazine gösteren bir harita veriyor. Bu haritayı takip ederek zenginliğe giden yolda zorluklara göğüs gerip adınızı tüm dünyaya duyurabilirsiniz!

Oyuna gelen yeniliklerden biri de Shulker Kutusu. Bu kutu normal kutulardan farklı olarak kırıldığında içindekileri fırlatmıyor, içinde tutmaya devam ediyor. Yerden alıp envanterinizde eşyalarla birlikte taşıyabiliyorsunuz. Bir nevi sırt çantası olarak düşünebilirsiniz. Dispanserler bu kutuyu yere koyuyor ve pistonlar kırıyor. Hunilerin üstüne koyulursa huniler içini boşaltıyor, eğer üzerine eşya olarak bırakırsanız huniler eşya olarak kutuyu alıyor ve ucu nerdeyse oraya bırakıyor. Kırmızı taş sistemleri için işe yarayacağı kesin!

Bu yeni özellikleri deneyebileceğiniz bir dünya örneği de mevcut! Denemek için hemen indirin: Kayıp Medeniyet

Diğer başlıklarımızı incelemek isterseniz; ServerKurma Haberler

Yorumlarınız size daha iyi hizmet verebilmemiz için çok önemli! Bu güncelleme hakkındaki düşüncelerinizi bizimle paylaşın!