nastavení servru a pomoc

Technická podpora k herním serverům Minecraft a Tekkit
Message
Autor
Uživatelský avatar
Shadowhacker
Příspěvky: 640
Věk: 30
Registrován: 23 led 2012, 18:31
Reputation: 0
Bydliště: Plzeň

Re: nastavení servru a pomoc

#11 Příspěvekod Shadowhacker » 22 črc 2013, 21:51

jakub1000, ten podpis s IP adresou ti nestačí?
Obrázek

jakub1000
Příspěvky: 907
Věk: 24
Registrován: 15 led 2013, 18:01
Reputation: 0
Kontaktovat uživatele:

Re: nastavení servru a pomoc

#12 Příspěvekod jakub1000 » 22 črc 2013, 21:53

Aha sorry nevšiml jsem si ho jsem na mobilu :D

Uživatelský avatar
liki12
Příspěvky: 699
Registrován: 09 úno 2012, 21:24
Reputation: 0

Re: nastavení servru a pomoc

#13 Příspěvekod liki12 » 22 črc 2013, 21:58

Shadowhacker hele a řekl by jsi mi jak vyplnit tu mysql databázi co je v authme jsem z toho zpocenej protože mi to nejde :/ dík
93.91.250.110:37076

Uživatelský avatar
nejento
Příspěvky: 9815
Registrován: 28 lis 2011, 14:09
Reputation: 55
Kontaktovat uživatele:

Re: nastavení servru a pomoc

#14 Příspěvekod nejento » 22 črc 2013, 23:04

Buď mrkni do návodů (tam to je), nebo sem dej ten config do Code. Hesla logicky zakryj.
Obrázek

Obrázek Přidejte se ke komunitě zákazníků na FakaHeda.eu Discord! Poznejte nové lidi nebo vyřešte svůj technický problém živě: https://discord.fakaheda.eu/

Uživatelský avatar
liki12
Příspěvky: 699
Registrován: 09 úno 2012, 21:24
Reputation: 0

Re: nastavení servru a pomoc

#15 Příspěvekod liki12 » 23 črc 2013, 00:19

Kde mám chybu??

Spoiler: zobrazit

Kód: Vybrat vše

# iConomy 6.0.8b
# @author     Nijikokun <nijikokun@gmail.com>
# @license    GPLv2
# @copyright  Copyright AniGaiku LLC (C) 2010-2011
##
# Setup Notes
#   - Seconds
#         Basic Table:
#           1 minute = 60 seconds
#           1 hour = 1 minute * 60 = 3600 seconds
#           1 day = 1 hour * 24 = 86400 seconds
#           1 week = 1 day * 7 = 604800 seconds
#   - Database
#           Do not use remote databases from free sites, please use either a
#           remote database from a personal hosted VPS or DEDI or a local
#           database. This will prevent any 'timeout' or 'invalid settings'
#           or 'cannot connect to database' issues. Thank you :)!
##

System:
  Permissions:
    Use:
      # Should a user have the 'iConomy.holdings' to use /money
      # By default this is false, so that people stop complaining that
      # iConomy doesn't work. Yes, people actually report that.
      # If you are one of those people, leave this false.
      Holdings: false

  Default:
    Currency:
      # Major is the first segment [Major].Minor

      # Major ([Major].Minor) 1.00 Dollar (With Seperate 1 Dollar)
      Major: [ 'Dollar', 'Dollars' ]

      # Minor (Major.[Minor]) 0.23 Coins  (With Seperate 0 Dollars, 23 Coins)
      Minor: [ 'Coin', 'Coins' ]

    Account:
      # Default account balance when created
      Holdings: 30.0

  # Controls how money is formatted through methods
  Formatting:
    # Minor allows you to use the Minor amounts for amounts <1
    # Example (true) 0.23 Coins and 1.23 Dollars (false) 0.23 Dollars and 1.23 Dollars
    Minor: false

    # Seperate allows your money to be shown in an alternative way,
    # instead of 1.32 it will show as 1 Dollar 23 Coins
    # !!! NOTICE: This only works if Minor is set to true !!!
    Seperate: false                               # Example (true) 1 Dollar, 23 Coins (false) 1.23 Dollars (Only if Minor is true)

    # Single shows your money in another alternative way.
    # Instead of 1.23 Dollars you will see: 1 Dollar.
    # If your money is 0.23 you will see 0 Dollars if Minor is false, 23 Coins if Minor is true.
    # !!! Notice: This overrides seperate !!!
    Single: false

  # Logs all monetary transactions passed through iConomy
  Logging:
    Enabled: false

  # Purges Default Balances at Loading
  # Good way to keep unused accounts or default accounts wiped out and lower database usage.
  Purging:
    Enabled: true

  # Controls amount of money gained at a set interval.
  Interest:
    Enabled: false

    # Only give interest to players who are currently online?
    Online: true

    Announce:
      # Send a message when the player gains interest?
      Enabled: false

    Interval:
      #  Interval is done in seconds, here is a easy reference table for commonly set intervals:
      #   1 minute = 60 seconds
      #   1 hour = 1 minute * 60 = 3600 seconds
      #   1 day = 1 hour * 24 = 86400 seconds
      #   1 week = 1 day * 7 = 604800 seconds
      Seconds: 60

    Amount:
      # The balance to be met where we stop giving interest.
      # 0.0 for no limit
      Cutoff: 0.0

      # Percentage of holdings to give / take (Negative to take) (Overrides Min/Max)
      Percent: 0.0

      # This is range based, to set a "flat" or "constant" rate, set each (Maximum and Minimum) to the same number.
      # If the two numbers are different, it will be a random amount in-between the two.
      Maximum: 1
      Minimum: 2

  Database:
    # Databases Supported:
    # Flatfile, FF, mini, minidb
    #  - These all equate to miniDB
    ##
    # item, items, inventory, inventoryDB
    #  - These all equate to InventoryDB, which uses inventory for storage
    ##
    # xp, exp, orb, xpdb, expdb, orbdb
    #  - These all equate to ExperienceDB, which relies on Experience for balance.
    ##
    # mysql, mysqldb
    #  - These will attempt to connect to MySQL
    ##
    # sqlite, sqlite2, sqlite3, sqlitedb
    #  - These will attempt to create & connect to SQLite
    ##
    # postgre, postgreSQL, postgreDB
    #  - These will attempt to connect to PostgreSQL
    Type: 'minidb'
   
    # These are for InventoryDB only.
    #
    # InventoryDB is essentially Physical Money.
    #   It isn't logged in a database, its based on the users inventory
    #   and the two items selected below.
    #
    # MajorItem is the item or block ID of the major currency
    # MinorItem is the item or block ID of the minor currency
    # e.g. MajorItem: 266, MinorItem: 265 for Gold/Iron
    MajorItem: 266
    MinorItem: 265

    # This controls the database name, by default it is iConomy
    Table: 'iConomy'

    # URL is for SQL Databases Only
    ##
    # Path to iConomy folder is easy, it's the COMPLETE path.
    # (Mine) G:\MineCraft\plugins\iConomy\
    # Won't be the same as yours, but it usually looks like that.
    ##
    # [H2DB Default] h2:path/to/iConomy/folder/iConomy;AUTO_RECONNECT=TRUE
    # [SQLite Default] sqlite:path/to/iConomy/folder/iConomy.db
    ##
    # Binary Databases use ip:port style connections.
    # ip
    #  - is the connection identifier (internet protocol)
    #  - for ipv6 usually encased in brackets [::1]
    # port
    #  - the port that the database is listening on
    #  - defaults: 3306 for mysql, postgre is either 5740 or 5432
    ##
    # [MySQL Default] mysql://localhost:3306/iConomy
    # [Postgre Default] postgresql://localhost:5740/iConomy
    URL: 'mysql://xray.fakaheda.eu:3306/gs_37076_1'

    # Login details for binary databases
    Username: 'gs_37076_1'
    Password: 'mám'

    ##############################################################
    # !!! Conversion is not your database settings !!!
    ##############################################################
    # Conversion allows you to convert your old 5.x to the new 6.x
    # All is currently unused.
    ##############################################################
    # URL is for MySQL only, H2DB doesn't use it.
    ##############################################################
    Conversion:
      # Set to True, After converting, change this back to false!
      Enabled: true

      # Database Type, H2DB or MySQL
      Type: 'MySQL'

      # Database Table
      Table: 'iConomy'

      # Database URL without table at the end.
      URL: 'xray.fakaheda.eu'

      # Username / Password
      # H2DB does not use this. MySQL Only.
      Username: 'gs_37076_1'
      Password: 'mám'

      # Unused ATM.
      All: true
93.91.250.110:37076

Uživatelský avatar
Shadowhacker
Příspěvky: 640
Věk: 30
Registrován: 23 led 2012, 18:31
Reputation: 0
Bydliště: Plzeň

Re: nastavení servru a pomoc

#16 Příspěvekod Shadowhacker » 23 črc 2013, 01:27

Píšeš tam trošku blbosti, vyplňuješ i to, co nemáš. Je tam více nastavení. 1) Nastavení pro DB, jako připojení 2) Nastavení pro DB, jak se tabulky, co využívá plugin budou nazývat.
Co to píše při startu?
A měl by sis změnit tohle..

Kód: Vybrat vše

    Type: 'minidb'

Na např.

Kód: Vybrat vše

    Type: 'mysql'
Obrázek

Uživatelský avatar
liki12
Příspěvky: 699
Registrován: 09 úno 2012, 21:24
Reputation: 0

Re: nastavení servru a pomoc

#17 Příspěvekod liki12 » 23 črc 2013, 10:18

Nejde

log:

Spoiler: zobrazit

Kód: Vybrat vše

> 10:16:17 [INFO] Starting minecraft server version 1.6.2
> 10:16:17 [INFO] Loading properties
> 10:16:17 [INFO] Default game type: SURVIVAL
> 10:16:17 [INFO] Generating keypair
> 10:16:17 [INFO] Starting Minecraft server on 93.91.250.110:37076
> 10:16:17 [INFO] This server is running CraftBukkit version git-Bukkit-1.5.2-R1.0-27-gdc25312-b2815jnks (MC: 1.6.2) (Implementing API version 1.6.2-R0.1-SNAPSHOT)
> 10:16:18 [INFO] ----- Bukkit Auto Updater -----
> 10:16:18 [INFO] It appears that you're running a Development Build, when you've specified in bukkit.yml that you prefer to run Recommended Builds.
> 10:16:18 [INFO] If you would like to be kept informed about new Development Build releases, it is recommended that you change 'preferred-channel' in your bukkit.yml to 'dev'.
> 10:16:18 [INFO] With that set, you will be told whenever a new version is available for download, so that you can always keep up to date and secure with the latest fixes.
> 10:16:18 [INFO] If you would like to disable this warning, simply set 'suggest-channels' to false in bukkit.yml.
> 10:16:18 [INFO] ----- ------------------- -----
> 10:16:18 [INFO] [PermissionsEx] sql backend registered!
> 10:16:18 [INFO] [PermissionsEx] file backend registered!
> 10:16:18 [INFO] [PermissionsEx] PermissionEx plugin initialized.
> 10:16:18 [INFO] [LagMeter] Loading LagMeter v1.9.0
> 10:16:18 [INFO] [FakaHedaMinequery] Loading FakaHedaMinequery v1.2
> 10:16:18 [INFO] [WorldEdit] Loading WorldEdit v5.5.7
> 10:16:18 [INFO] [iConomy] Loading iConomy v7.0
> 10:16:18 [INFO] [Vault] Loading Vault v1.2.25-b333
> 10:16:18 [INFO] [HealthBar] Loading HealthBar v1.6.1.1
> 10:16:18 [INFO] odifyworld] Loading Modifyworld v1.19.6
> 10:16:18 [INFO] [PermissionsEx] Loading PermissionsEx v1.19.6
> 10:16:18 [INFO] [PermissionsEx] Initializing file backend
> 10:16:18 [INFO] Permissions file successfully reloaded
> 10:16:18 [INFO] [WorldGuard] Loading WorldGuard v5.8
> 10:16:18 [INFO] [Essentials] Loading Essentials v2.11.1
> 10:16:18 [INFO] [Jobs] Loading Jobs v2.11.3
> 10:16:18 [INFO] [EssentialsProtect] Loading EssentialsProtect v2.11.1
> 10:16:18 [INFO] [AuthMe] Loading AuthMe v2.7.11
> 10:16:18 [INFO] [EssentialsSpawn] Loading EssentialsSpawn v2.11.1
> 10:16:18 [INFO] [Ultrabans] Loading Ultrabans v3.1.0
> 10:16:18 [INFO] [EssentialsChat] Loading EssentialsChat v2.11.1
> 10:16:18 [INFO] [ScoreboardStats] Loading ScoreboardStats v0.5.9
> 10:16:18 [INFO] [EssentialsAntiBuild] Loading EssentialsAntiBuild v2.11.1
> 10:16:18 [INFO] [Residence] Loading Residence v2.6.6.5
> 10:16:18 [INFO] [Vault] Enabling Vault v1.2.25-b333
> 10:16:18 [INFO] [Vault][Economy] Essentials Economy found: Waiting
> 10:16:18 [WARNING] iConomy - If you are using Flatfile storage be aware that versions 6, 7 and 8 have a CRITICAL bug which can wipe ALL iconomy data.
> 10:16:18 [WARNING] if you're using Votifier, or any other plugin which handles economy data in a threaded manner your server is at risk!
> 10:16:18 [WARNING] it is highly suggested to use SQL with iCo6 or to use an alternative economy plugin!
> 10:16:18 [INFO] [Vault][Economy] iConomy 6 found: Waiting
> 10:16:18 [INFO] [Vault][Permission] PermissionsEx found: Waiting
> 10:16:18 [INFO] [Vault][Permission] SuperPermissions loaded as backup permission system.
> 10:16:18 [INFO] [Vault][Chat] PermissionsEx found: Waiting
> 10:16:18 [INFO] [Vault] Enabled Version 1.2.25-b333
> 10:16:18 [INFO] [Vault][Economy] Essentials Economy hooked.
> 10:16:18 [INFO] [Vault][Economy] iConomy 7 hooked.
> 10:16:18 [INFO] [Vault][Permission] PermissionsEx hooked.
> 10:16:18 [WARNING] **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
> 10:16:18 [WARNING] The server will make no attempt to authenticate usernames. Beware.
> 10:16:18 [WARNING] While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
> 10:16:18 [WARNING] To change this, set "online-mode" to "true" in the server.properties file.
> 10:16:18 [INFO] Preparing level "world"
> 10:16:18 [INFO] Preparing start region for level 0 (Seed: 3017709851677738984)
> 10:16:19 [INFO] Preparing start region for level 1 (Seed: 3017709851677738984)
> 10:16:19 [INFO] Preparing start region for level 2 (Seed: 3017709851677738984)
> 10:16:19 [INFO] [LagMeter] Enabling LagMeter v1.9.0
> 10:16:19 [INFO] [LagMeter] Not using logs folder.
> 10:16:19 [INFO] [LagMeter 1.9.0] Enabled! Polling every 40 server ticks. Logging to /hlserver/37076/plugins/LagMeter/lag.log
> 10:16:19 [INFO] [FakaHedaMinequery] Enabling FakaHedaMinequery v1.2
> 10:16:19 [INFO] Starting FakaHedaMinequery server on 93.91.250.110:38076
> 10:16:19 [INFO] [WorldEdit] Enabling WorldEdit v5.5.7
> 10:16:19 [INFO] WEPIF: Using the Bukkit Permissions API.
> 10:16:19 [INFO] [iConomy] Enabling iConomy v7.0
> 10:16:19 [INFO] [iConomy - April Fools] Enabled (27 ms)
> 10:16:19 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
> 10:16:19 [INFO] java.sql.SQLException: No suitable driver found for xray.fakaheda.eu
> 10:16:19 [INFO] [iConomy - April Fools] Purged accounts with default balance.
> 10:16:19 [INFO] [HealthBar] Enabling HealthBar v1.6.1.1
> 10:16:19 [INFO] odifyworld] Enabling Modifyworld v1.19.6
> 10:16:19 [INFO] odifyworld] Modifyworld enabled!
> 10:16:19 [INFO] [PermissionsEx] Enabling PermissionsEx v1.19.6
> 10:16:19 [INFO] [PermissionsEx] Superperms support enabled.
> 10:16:19 [INFO] [PermissionsEx] v1.19.6 enabled
> 10:16:19 [INFO] WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
> 10:16:19 [INFO] [Vault][Chat] PermissionsEx_Chat hooked.
> 10:16:19 [INFO] [WorldGuard] Enabling WorldGuard v5.8
> 10:16:19 [INFO] [WorldGuard] (world) TNT ignition is PERMITTED.
> 10:16:19 [INFO] [WorldGuard] (world) Lighters are PERMITTED.
> 10:16:19 [INFO] [WorldGuard] (world) Lava fire is blocked.
> 10:16:19 [INFO] [WorldGuard] (world) Fire spread is UNRESTRICTED.
> 10:16:19 [INFO] [WorldGuard] Loaded configuration for world 'world'
> 10:16:19 [INFO] [WorldGuard] (world_nether) TNT ignition is PERMITTED.
> 10:16:19 [INFO] [WorldGuard] (world_nether) Lighters are PERMITTED.
> 10:16:19 [INFO] [WorldGuard] (world_nether) Lava fire is blocked.
> 10:16:19 [INFO] [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
> 10:16:19 [INFO] [WorldGuard] Loaded configuration for world 'world_nether'
> 10:16:19 [INFO] [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
> 10:16:19 [INFO] [WorldGuard] (world_the_end) Lighters are PERMITTED.
> 10:16:19 [INFO] [WorldGuard] (world_the_end) Lava fire is blocked.
> 10:16:19 [INFO] [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
> 10:16:19 [INFO] [WorldGuard] Loaded configuration for world 'world_the_end'
> 10:16:19 [INFO] [WorldGuard] 0 regions loaded for 'world'
> 10:16:19 [INFO] [WorldGuard] 0 regions loaded for 'world_nether'
> 10:16:19 [INFO] [WorldGuard] 0 regions loaded for 'world_the_end'
> 10:16:19 [INFO] [Essentials] Enabling Essentials v2.11.1
> 10:16:20 [INFO] Essentials: Using PermissionsEx based permissions.
> 10:16:20 [INFO] [Essentials] Payment method found (Vault - Economy: iConomy 7 version: 1.2.25-b333)
> 10:16:20 [INFO] [Jobs] Enabling Jobs v2.11.3
> 10:16:20 [INFO] [Jobs] Started database save task
> 10:16:20 [INFO] [Jobs] Started buffered payment thread
> 10:16:20 [INFO] [Jobs] Plugin has been enabled succesfully.
> 10:16:20 [INFO] [EssentialsProtect] Enabling EssentialsProtect v2.11.1
> 10:16:20 [INFO] [AuthMe] Enabling AuthMe v2.7.11
> 10:16:20 [INFO] [AuthMe] Loading Configuration File...
> 10:16:20 [INFO] [AuthMe] Merge new Config Options if needed..
> 10:16:20 [INFO] [AuthMe] Set Language: en
> 10:16:20 [INFO] [AuthMe] MySQL driver loaded
> 10:16:20 [INFO] [AuthMe] Connection pool ready
> 10:16:21 [INFO] [AuthMe] Authme 2.7.11 enabled
> 10:16:21 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn v2.11.1
> 10:16:21 [INFO] [Ultrabans] Enabling Ultrabans v3.1.0
> 10:16:21 [INFO] [Ultrabans] No Updates found on dev.bukkit.org.
> 10:16:21 [INFO] [Ultrabans] Loaded. 0 secs.
> 10:16:21 [INFO] [EssentialsChat] Enabling EssentialsChat v2.11.1
> 10:16:21 [INFO] [ScoreboardStats] Enabling ScoreboardStats v0.5.9
> 10:16:22 [INFO] DataSourcePool [ScoreboardStats] autoCommit[false] transIsolation[SERIALIZABLE] min[2] max[250]
> 10:16:22 [INFO] DatabasePlatform name:ScoreboardStats platform:sqlite
> 10:16:22 [INFO] SubClassFactory parent ClassLoader [org.bukkit.plugin.java.PluginClassLoader]
> 10:16:22 [INFO] Entities enhanced[0] subclassed[1]
> 10:16:22 [INFO] [EssentialsAntiBuild] Enabling EssentialsAntiBuild v2.11.1
> 10:16:22 [INFO] [Residence] Enabling Residence v2.6.6.5
> 10:16:22 [INFO] [Residence] Found Vault using permissions plugin:PermissionsEx
> 10:16:22 [INFO] [Residence] Scanning for economy systems...
> 10:16:22 [INFO] [Residence] Found Vault using economy system: iConomy 7
> 10:16:22 [INFO] [Residence] Found WorldEdit
> 10:16:22 [INFO] [Residence] Enabled! Version 2.6.6.5 by bekvon
> 10:16:22 [INFO] Server permissions file permissions.yml is empty, ignoring it
> 10:16:22 [INFO] Done (4.464s)! For help, type "help" or "?"
> 10:16:22 [INFO] Starting GS4 status listener
> 10:16:22 [INFO] Starting remote control listener
> 10:16:22 [WARNING] No rcon password set in '/hlserver/37076/server.properties', rcon disabled!
> 10:16:22 [INFO] Query running on 93.91.250.110:37076
> 10:16:22 [INFO] [Jobs] [Jobs] Successfully linked with Vault.
93.91.250.110:37076

Uživatelský avatar
Shadowhacker
Příspěvky: 640
Věk: 30
Registrován: 23 led 2012, 18:31
Reputation: 0
Bydliště: Plzeň

Re: nastavení servru a pomoc

#18 Příspěvekod Shadowhacker » 23 črc 2013, 10:39

Vždyť to vypadá v pohodě, ne?

Kód: Vybrat vše

> 10:16:20 [INFO] [AuthMe] Enabling AuthMe v2.7.11
> 10:16:20 [INFO] [AuthMe] Loading Configuration File...
> 10:16:20 [INFO] [AuthMe] Merge new Config Options if needed..
> 10:16:20 [INFO] [AuthMe] Set Language: en
> 10:16:20 [INFO] [AuthMe] MySQL driver loaded
> 10:16:20 [INFO] [AuthMe] Connection pool ready
> 10:16:21 [INFO] [AuthMe] Authme 2.7.11 enabled
Obrázek

Uživatelský avatar
liki12
Příspěvky: 699
Registrován: 09 úno 2012, 21:24
Reputation: 0

Re: nastavení servru a pomoc

#19 Příspěvekod liki12 » 23 črc 2013, 10:49

ALe authme to jo ale já dělám Iconomy :D :D
93.91.250.110:37076

Uživatelský avatar
Shadowhacker
Příspěvky: 640
Věk: 30
Registrován: 23 led 2012, 18:31
Reputation: 0
Bydliště: Plzeň

Re: nastavení servru a pomoc

#20 Příspěvekod Shadowhacker » 23 črc 2013, 11:51

liki12 píše:Shadowhacker hele a řekl by jsi mi jak vyplnit tu mysql databázi co je v authme jsem z toho zpocenej protože mi to nejde :/ dík

Tak jsem myslel, že stále chceš AuthMe.. Co myslíš, že máš blbě v iConomy? DB?
Obrázek


Zpět na „Minecraft, Tekkit“

Kdo je online

Uživatelé prohlížející si toto fórum: Žádní registrovaní uživatelé a 71 hostů