ArkShop change mysql port

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Public Service Announcement

    Hey Guest, I’ve got some exciting news to share! 🎉

    Starting this December, I’ll be moving the entire GameServersHub website away from WordPress and rebuilding it in Next.js! This upgrade will bring incredibly faster speeds, smoother performance, and a modern user experience that sets the stage for everything coming next.

    In 2026, GameServersHub will be entering a new era. I’ll be revamping the entire platform from the ground up and launching a brand-new, fully modernized marketplace. It’ll feature a cleaner design, improved functionality, and better tools for both creators and server owners.

    On top of that, development has already started on the GameServerListing project at https://gsl-six.vercel.app/, which is expected to launch in early Q1 2026. This new system will make discovering and managing servers easier than ever before.


    👉 Stay in the loop!
    Join our Discord for behind-the-scenes updates, early previews, and community discussions.

    » Click here to join our Discord! «

    ~ MrOwlSky

PedroArmindo

Well-known member
Joined
Sep 18, 2020
Messages
62
I have a server in pingperfect company. There my mysql port is 3304.

In arkshop plugin dont have local to change the default port 3306 to 3304. I tryed

Code:
{
  "Mysql": {
    "UseMysql": true,
    "MysqlHost": "96.47.230.50",
    "MysqlPort": 3406,
    "MysqlUser": "pedroa",
    "MysqlPass": "12345",
    "MysqlDB": "pedroa1"
  },

but i received a error and server dont start.

Curious that for the PERMISSION plugin have way to put a different port.

I didn't find anything about it here on the forum, only other people trying to change the door and nobody answered if it was possible.

Thank you for help.
 
I have a server in pingperfect company. There my mysql port is 3304.

In arkshop plugin dont have local to change the default port 3306 to 3304. I tryed

Code:
{
  "Mysql": {
    "UseMysql": true,
    "MysqlHost": "96.47.230.50",
    "MysqlPort": 3406,
    "MysqlUser": "pedroa",
    "MysqlPass": "12345",
    "MysqlDB": "pedroa1"
  },

but i received a error and server dont start.

Curious that for the PERMISSION plugin have way to put a different port.

I didn't find anything about it here on the forum, only other people trying to change the door and nobody answered if it was possible.

Thank you for help.
[/QUOTE]

The libary he uses on arkshop has no option for that, but maybe just try this, just add : after ip and write port
JavaScript:
  "Mysql":{
    "UseMysql":true,
    "MysqlHost":"localhost:3304",
    "MysqlUser":"apitest",
    "MysqlPass":"12345",
    "MysqlDB":"apitest"
  },
 
I have a server in pingperfect company. There my mysql port is 3304.

In arkshop plugin dont have local to change the default port 3306 to 3304. I tryed

Code:
{
  "Mysql": {
    "UseMysql": true,
    "MysqlHost": "96.47.230.50",
    "MysqlPort": 3406,
    "MysqlUser": "pedroa",
    "MysqlPass": "12345",
    "MysqlDB": "pedroa1"
  },

but i received a error and server dont start.

Curious that for the PERMISSION plugin have way to put a different port.

I didn't find anything about it here on the forum, only other people trying to change the door and nobody answered if it was possible.

Thank you for help.

The libary he uses on arkshop has no option for that, but maybe just try this, just add : after ip and write port
JavaScript:
  "Mysql":{
    "UseMysql":true,
    "MysqlHost":"localhost:3304",
    "MysqlUser":"apitest",
    "MysqlPass":"12345",
    "MysqlDB":"apitest"
  },
[/QUOTE]

The pingperfect put my mysql in default port, but thankyou for the help.
 
Back
Top