Advertisement
Nicodemis79

webauctionplus727

Jul 27th, 2013
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 52.81 KB | None | 0 0
  1.  
  2. Caligari-Mint ~ #
  3. Caligari-Mint ~ #
  4. Caligari-Mint ~ #
  5. Caligari-Mint ~ #
  6. Caligari-Mint ~ #
  7. Caligari-Mint ~ # mysql -u root -p
  8. Enter password:
  9. Welcome to the MySQL monitor. Commands end with ; or \g.
  10. Your MySQL connection id is 12
  11. Server version: 5.6.11 MySQL Community Server (GPL)
  12.  
  13. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
  14.  
  15. Oracle is a registered trademark of Oracle Corporation and/or its
  16. affiliates. Other names may be trademarks of their respective
  17. owners.
  18.  
  19. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  20.  
  21. mysql> SHOW DATABASES;
  22. +--------------------+
  23. | Database |
  24. +--------------------+
  25. | information_schema |
  26. | logblock |
  27. | mysql |
  28. | performance_schema |
  29. | test |
  30. +--------------------+
  31. 5 rows in set (0.00 sec)
  32.  
  33. mysql> use mysql;
  34. Reading table information for completion of table and column names
  35. You can turn off this feature to get a quicker startup with -A
  36.  
  37. Database changed
  38. mysql> SHOW TABLES;
  39. +---------------------------+
  40. | Tables_in_mysql |
  41. +---------------------------+
  42. | columns_priv |
  43. | db |
  44. | event |
  45. | func |
  46. | general_log |
  47. | help_category |
  48. | help_keyword |
  49. | help_relation |
  50. | help_topic |
  51. | innodb_index_stats |
  52. | innodb_table_stats |
  53. | ndb_binlog_index |
  54. | plugin |
  55. | proc |
  56. | procs_priv |
  57. | proxies_priv |
  58. | servers |
  59. | slave_master_info |
  60. | slave_relay_log_info |
  61. | slave_worker_info |
  62. | slow_log |
  63. | tables_priv |
  64. | time_zone |
  65. | time_zone_leap_second |
  66. | time_zone_name |
  67. | time_zone_transition |
  68. | time_zone_transition_type |
  69. | user |
  70. +---------------------------+
  71. 28 rows in set (0.00 sec)
  72.  
  73. mysql> DESC user;
  74. +------------------------+-----------------------------------+------+-----+---------+-------+
  75. | Field | Type | Null | Key | Default | Extra |
  76. +------------------------+-----------------------------------+------+-----+---------+-------+
  77. | Host | char(60) | NO | PRI | | |
  78. | User | char(16) | NO | PRI | | |
  79. | Password | char(41) | NO | | | |
  80. | Select_priv | enum('N','Y') | NO | | N | |
  81. | Insert_priv | enum('N','Y') | NO | | N | |
  82. | Update_priv | enum('N','Y') | NO | | N | |
  83. | Delete_priv | enum('N','Y') | NO | | N | |
  84. | Create_priv | enum('N','Y') | NO | | N | |
  85. | Drop_priv | enum('N','Y') | NO | | N | |
  86. | Reload_priv | enum('N','Y') | NO | | N | |
  87. | Shutdown_priv | enum('N','Y') | NO | | N | |
  88. | Process_priv | enum('N','Y') | NO | | N | |
  89. | File_priv | enum('N','Y') | NO | | N | |
  90. | Grant_priv | enum('N','Y') | NO | | N | |
  91. | References_priv | enum('N','Y') | NO | | N | |
  92. | Index_priv | enum('N','Y') | NO | | N | |
  93. | Alter_priv | enum('N','Y') | NO | | N | |
  94. | Show_db_priv | enum('N','Y') | NO | | N | |
  95. | Super_priv | enum('N','Y') | NO | | N | |
  96. | Create_tmp_table_priv | enum('N','Y') | NO | | N | |
  97. | Lock_tables_priv | enum('N','Y') | NO | | N | |
  98. | Execute_priv | enum('N','Y') | NO | | N | |
  99. | Repl_slave_priv | enum('N','Y') | NO | | N | |
  100. | Repl_client_priv | enum('N','Y') | NO | | N | |
  101. | Create_view_priv | enum('N','Y') | NO | | N | |
  102. | Show_view_priv | enum('N','Y') | NO | | N | |
  103. | Create_routine_priv | enum('N','Y') | NO | | N | |
  104. | Alter_routine_priv | enum('N','Y') | NO | | N | |
  105. | Create_user_priv | enum('N','Y') | NO | | N | |
  106. | Event_priv | enum('N','Y') | NO | | N | |
  107. | Trigger_priv | enum('N','Y') | NO | | N | |
  108. | Create_tablespace_priv | enum('N','Y') | NO | | N | |
  109. | ssl_type | enum('','ANY','X509','SPECIFIED') | NO | | | |
  110. | ssl_cipher | blob | NO | | NULL | |
  111. | x509_issuer | blob | NO | | NULL | |
  112. | x509_subject | blob | NO | | NULL | |
  113. | max_questions | int(11) unsigned | NO | | 0 | |
  114. | max_updates | int(11) unsigned | NO | | 0 | |
  115. | max_connections | int(11) unsigned | NO | | 0 | |
  116. | max_user_connections | int(11) unsigned | NO | | 0 | |
  117. | plugin | char(64) | YES | | | |
  118. | authentication_string | text | YES | | NULL | |
  119. | password_expired | enum('N','Y') | NO | | N | |
  120. +------------------------+-----------------------------------+------+-----+---------+-------+
  121. 43 rows in set (0.00 sec)
  122.  
  123. mysql> exit
  124. Bye
  125. Caligari-Mint ~ # mysql -u root -p
  126. Enter password:
  127. Welcome to the MySQL monitor. Commands end with ; or \g.
  128. Your MySQL connection id is 13
  129. Server version: 5.6.11 MySQL Community Server (GPL)
  130.  
  131. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
  132.  
  133. Oracle is a registered trademark of Oracle Corporation and/or its
  134. affiliates. Other names may be trademarks of their respective
  135. owners.
  136.  
  137. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  138.  
  139. mysql> SHOW DATABSES;
  140. ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'DATABSES' at line 1
  141. mysql> SHOW DATABASES;
  142. +--------------------+
  143. | Database |
  144. +--------------------+
  145. | information_schema |
  146. | logblock |
  147. | mysql |
  148. | performance_schema |
  149. | test |
  150. +--------------------+
  151. 5 rows in set (0.00 sec)
  152.  
  153. mysql> CREATE DATABASE webauctionplus;
  154. Query OK, 1 row affected (0.00 sec)
  155.  
  156. mysql> CREATE USER 'webauctionplus'@'localhost' IDENTIFIED BY 'x';
  157. Query OK, 0 rows affected (0.00 sec)
  158.  
  159. mysql> CREATE DATABASE webauctionplus;SHOW DATABASES;
  160. +--------------------+
  161. | Database |
  162. +--------------------+
  163. | information_schema |
  164. | logblock |
  165. | mysql |
  166. | performance_schema |
  167. | test |
  168. | webauctionplus |
  169. +--------------------+
  170. 6 rows in set (0.00 sec)
  171.  
  172. mysql> GRANT ALL PRIVILEGES ON webauctionplus.* TO 'webauctionplus'@'localhost';
  173. Query OK, 0 rows affected (0.00 sec)
  174.  
  175. mysql> exit
  176. Bye
  177. Caligari-Mint ~ # logout
  178.  
  179.  
  180. [SSH] INFO: DISCONNECT
  181.  
  182. ***
  183. *** DISCONNECT
  184. *** time 12:16:34
  185. ***
  186. ls
  187. Backups minecraft minecraft.sh www
  188. rbc@Caligari-Mint ~ $ screen -r
  189. There is no screen to be resumed.
  190.  
  191. rbc@Caligari-Mint ~ $ ls
  192. Backups minecraft minecraft.sh www
  193. rbc@Caligari-Mint ~ $ ./minecraft.sh
  194. Usage: ./minecraft.sh {start|stop|update|backup|status|restart|command "server command"}
  195. rbc@Caligari-Mint ~ $ ./minecraft.sh start
  196. Starting craftbukkit.jar...
  197. craftbukkit.jar is now running.
  198. rbc@Caligari-Mint ~ $ screen -r
  199.  
  200.  
  201. 12:17:53 [INFO] [WorldGuard] (pvp) TNT ignition is blocked.
  202. 12:17:53 [INFO] [WorldGuard] (pvp) Lighters are PERMITTED.
  203. 12:17:53 [INFO] [WorldGuard] (pvp) Lava fire is blocked.
  204. 12:17:53 [INFO] [WorldGuard] (pvp) Fire spread is UNRESTRICTED.
  205. 12:17:53 [INFO] [WorldGuard] Loaded configuration for world 'pvp'
  206. 12:17:53 [INFO] [WorldGuard] Blacklist loaded.
  207. 12:17:53 [INFO] [WorldGuard] (mining) TNT ignition is PERMITTED.
  208. 12:17:53 [INFO] [WorldGuard] (mining) Lighters are PERMITTED.
  209. 12:17:53 [INFO] [WorldGuard] (mining) Lava fire is blocked.
  210. 12:17:53 [INFO] [WorldGuard] (mining) Fire spread is UNRESTRICTED.
  211. 12:17:53 [INFO] [WorldGuard] Loaded configuration for world 'mining'
  212. 12:17:53 [WARNING] [WorldEdit] No compatible nms block class found.
  213. 12:17:53 [INFO] [WorldGuard] 58 regions loaded for 'world'
  214. 12:17:53 [INFO] [WorldGuard] 2 regions loaded for 'world_nether'
  215. 12:17:53 [INFO] [WorldGuard] 0 regions loaded for 'world_the_end'
  216. 12:17:53 [INFO] [WorldGuard] 24 regions loaded for 'pvp'
  217. 12:17:53 [INFO] [WorldGuard] 0 regions loaded for 'mining'
  218. 12:17:53 [INFO] [ImInSpace] Enabling ImInSpace v0.5
  219. 12:17:54 [INFO] ImInSpace 0.5 : config file loaded
  220. 12:17:54 [INFO] ImInSpace 0.5 : Enabled.
  221. 12:17:54 [INFO] [iConomy] Enabling iConomy v7.0
  222. 12:17:54 [INFO] [iConomy - April Fools] Enabled (336 ms)
  223. 12:17:54 [INFO] [iConomy] Hello, I'm Nijikokun. Yes, this is an April Fools joke, but '/money top' was fixed! Enjoy :) - Rare Version!
  224. 12:17:54 [INFO] [iConomy - April Fools] Purged accounts with default balance.
  225. 12:17:54 [INFO] [SpaceShip] Enabling SpaceShip valpha610
  226. 12:17:54 [INFO] [SpaceShip] onEnable has been invoked!
  227. 12:17:54 [INFO] [DynamicTextures] Enabling DynamicTextures v1.2.2
  228. 12:17:54 [INFO] [DynamicTextures] WorldGuard found!
  229. 12:17:54 [INFO] [AntiXRay] Enabling AntiXRay v1.7.2
  230. 12:17:54 [INFO] [AntiXRay] AntiXRay enabled.
  231. 12:17:54 [INFO] [Lockette] Enabling Lockette v1.7.12
  232. 12:17:54 [INFO] [Lockette] Version 1.7.12 is being enabled! Yay! (Core version 1.3.7)
  233. 12:17:54 [INFO] [Lockette] Detected craftbukkit build [2815] ok.
  234. 12:17:54 [INFO] [Lockette] Custom lockable block list: [116, 84, 57, 145]
  235. 12:17:54 [INFO] [Lockette] Ignoring linked plugins: [mcMMO]
  236. 12:17:54 [INFO] [Lockette] Loading strings file for English by Acru
  237. 12:17:54 [INFO] [Lockette] Enabled link to plugin PermissionsEx for Groups, version 1.19.6
  238. 12:17:54 [INFO] [Lockette] Using ops file for admin permissions.
  239. 12:17:54 [INFO] [Lockette] Ready to protect your containers.
  240. 12:17:54 [INFO] [GriefPrevention] Enabling GriefPrevention v7.7
  241. 12:17:54 [INFO] GriefPrevention: Grief Prevention enabled.
  242. 12:17:54 [INFO] GriefPrevention: 23 total claims loaded.
  243. 12:17:54 [INFO] GriefPrevention: 10 players have staked claims.
  244. 12:17:55 [INFO] GriefPrevention: GriefPrevention requires Vault for economy integration.
  245. 12:17:55 [INFO] GriefPrevention: Attempting to load Vault...
  246. 12:17:55 [INFO] GriefPrevention: Vault loaded successfully!
  247. 12:17:55 [INFO] GriefPrevention: Looking for a Vault-compatible economy plugin...
  248. 12:17:55 [INFO] GriefPrevention: Hooked into economy: iConomy 7.
  249. 12:17:55 [INFO] GriefPrevention: Ready to buy/sell claim blocks!
  250. 12:17:55 [INFO] [PwnFilter] Enabling PwnFilter v3.1.0
  251. 12:17:55 [INFO] [PwnFilter] Now logging to plugins/PwnFilter/pwnfilter.log
  252. 12:17:55 [INFO] [PwnFilter] Vault found. Enabling actions requiring Vault
  253. 12:17:55 [INFO] [PwnFilter] Activated PlayerListener with Priority Setting: LOWEST
  254. 12:17:55 [INFO] [Lift] Enabling Lift v36
  255. 12:17:55 [INFO] Lift v36 is now enabled!
  256. 12:17:55 [INFO] [Essentials] Enabling Essentials v2.11.1
  257. 12:17:56 [INFO] Essentials: Using PermissionsEx based permissions.
  258. 12:17:56 [INFO] [Essentials] Payment method found (Vault - Economy: iConomy 7 version: 1.2.25-b320)
  259. 12:17:56 [INFO] [EssentialsSpawn] Enabling EssentialsSpawn v2.11.1
  260. 12:17:56 [INFO] [Multiverse-Portals] Enabling Multiverse-Portals v2.4-b548
  261. 12:17:56 [INFO] [Multiverse-Portals] - Version 2.4-b548 Enabled - By Rigby and fernferret
  262. 12:17:56 [INFO] [Multiverse-Portals] 11 - Portals(s) loaded
  263. 12:17:56 [INFO] [Multiverse-Inventories] Enabling Multiverse-Inventories v2.5-b335
  264. 12:17:56 [INFO] [Multiverse-Inventories 2.5-b335] enabled.
  265. 12:17:56 [INFO] [RegionForSale] Enabling RegionForSale v2.2
  266. 12:17:56 [INFO] [RegionForSale] Loading global configuration...
  267. 12:17:56 [INFO] [RegionForSale] Loading regions for world 'world'...
  268. 12:17:56 [INFO] [RegionForSale] Loading regions for world 'world_nether'...
  269. 12:17:56 [INFO] [RegionForSale] Loading regions for world 'world_the_end'...
  270. 12:17:56 [INFO] [RegionForSale] Loading regions for world 'pvp'...
  271. 12:17:56 [INFO] [RegionForSale] Loading regions for world 'mining'...
  272. 12:17:56 [INFO] [RegionForSale] Region withdraw information are offset against plugin down-time (2085 seconds) ...
  273. 12:17:56 [INFO] [TagAPI] Enabling TagAPI v2.3
  274. 12:17:56 [INFO] [TagAPI] Detected ProtocolLib, using that for handling!
  275. 12:17:56 [INFO] [TagAPI] Using hooks for CraftBukkit via ProtocolLib
  276. 12:17:56 [INFO] [VanishNoPacket] Enabling VanishNoPacket v3.18.2
  277. 12:17:56 [INFO] [VanishNoPacket] Loading support for v1_6_R2
  278. 12:17:56 [INFO] [VanishNoPacket] Using color changing features of TagAPI.
  279. 12:17:56 [INFO] [VanishNoPacket] Now hooking into Essentials
  280. 12:17:56 [INFO] [VanishNoPacket] v3.18.2 loaded.
  281. 12:17:56 [INFO] [WebAuctionPlus] Enabling WebAuctionPlus v1.1.9
  282. 12:17:56 [SEVERE] [WebAuction+] *** Failed to load WebAuctionPlus. Please check your config.
  283. 12:17:56 [INFO] [WebAuction+] Disabled, bye for now :-)
  284. 12:17:56 [INFO] [WebAuction+] Disabled, bye for now :-)
  285. 12:17:56 [INFO] [Paintball] Enabling Paintball v1.1.8
  286. 12:17:56 [INFO] [Paintball] Loading the default language: enUS.txt
  287. 12:17:56 [INFO] [Paintball] Scanned lines: 297
  288. 12:17:57 [INFO] [Paintball] Skipped lines: 1
  289. 12:17:57 [INFO] [Paintball] Using the default language now: enUS.txt
  290. 12:17:57 [INFO] [Paintball] Loading the specified melody now: win.txt
  291. 12:17:57 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 20
  292. 12:17:57 [INFO] [Paintball] Loading the specified melody now: defeat.txt
  293. 12:17:57 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 43
  294. 12:17:57 [INFO] [Paintball] Loading the specified melody now: draw.txt
  295. 12:17:57 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 29
  296. 12:17:57 [INFO] [Paintball] Plugin 'InSigns' not found. Additional sign features disabled.
  297. 12:17:57 [INFO] [Paintball] Plugin 'TagAPI' found. Using it now.
  298. 12:17:57 [INFO] [Paintball] Calculating turret angles...
  299. 12:17:57 [INFO] [Paintball] Calculating done.
  300. 12:17:57 [INFO] [Paintball] By blablubbabc enabled.
  301. 12:17:57 [INFO] [CraftBook] Enabling CraftBook v2310-c7c8cf8
  302. 12:17:57 [INFO] [CraftBook] CraftBook v3.7b5 is the latest version available, and the updatability of it is: NO_UPDATE. You currently have version 3.6.9 installed.
  303. 12:17:57 [INFO] 1 cauldron recipe(s) loaded
  304. 12:17:57 [INFO] [CraftBook] Enumerating chunks for self-triggered components...
  305. 12:17:57 [INFO] [CraftBook] 3125 chunk(s) for 5 world(s) processed (38ms elapsed)
  306. 12:17:57 [INFO] [ChestShop] Enabling ChestShop v3.5
  307. 12:17:57 [INFO] [ChestShop] Lockette version 1.7.12 loaded.
  308. 12:17:57 [INFO] [ChestShop] Vault loaded - using iConomy 7
  309. 12:17:58 [INFO] [EssentialsChat] Enabling EssentialsChat v2.11.1
  310. 12:17:58 [INFO] Server permissions file permissions.yml is empty, ignoring it
  311. 12:17:58 [INFO] Done (9.446s)! For help, type "help" or "?"
  312. 12:18:00 [INFO] --------- Checking version ----------
  313. 12:18:00 [INFO] [Paintball] There is a new version of paintball available: 1.2.2
  314. 12:18:00 [INFO] [Paintball] Download at the bukkit dev page.
  315. 12:18:00 [INFO] --------- ---------------- ----------
  316. 12:18:02 [INFO]
  317. 12:18:02 [INFO] **************************************************
  318. 12:18:02 [INFO] ----------------- PAINTBALL INFO -----------------
  319. 12:18:02 [INFO]
  320. 12:18:02 [INFO] License stuff:
  321. 12:18:02 [INFO] - Usage on own risk. I give no warranties for anything.
  322. 12:18:02 [INFO] - Do not modify. Use it as it is!
  323. 12:18:02 [INFO] - Do not redistribute/upload/use parts of it/copy/give away.
  324. 12:18:02 [INFO] - Do not use for commercial purposes!
  325. 12:18:02 [INFO] -> No benefits for paying players/donors!
  326. 12:18:02 [INFO] -> This also applies to any kind of add-on you are using
  327. 12:18:02 [INFO] related to this plugin!
  328. 12:18:02 [INFO]
  329. 12:18:02 [INFO] If you like this plugin: Give feedback and donate at
  330. 12:18:02 [INFO] ->http://dev.bukkit.org/server-mods/paintball_pure_war/
  331. 12:18:02 [INFO]
  332. 12:18:02 [INFO] Thank you and good shooting!
  333. 12:18:02 [INFO] - blablubbabc
  334. 12:18:02 [INFO]
  335. 12:18:02 [INFO] **************************************************
  336. 12:18:02 [INFO]
  337. 12:18:02 [WARNING] Can't keep up! Did the system time change, or is the server overloaded?
  338. >plugins
  339. 12:18:10 [INFO] Plugins (29): WorldEdit, Vault, PermissionsEx, Multiverse-Core, LogBlock, TerrainControl, WorldGuard, ImInSpace, iConomy, SpaceShip, DynamicTextures, AntiXRay, Lockette, ProtocolLib, GriefPrevention, PwnFilter, Lift, Essentials, EssentialsSpawn, Multiverse-Portals, Multiverse-Inventories, RegionForSale, TagAPI, VanishNoPacket, WebAuctionPlus, Paintball, CraftBook, ChestShop, EssentialsChat
  340. >list
  341. 12:18:11 [INFO] There are 0 out of maximum 10 players online.
  342. >gc
  343. 12:18:12 [INFO] Uptime: 26 seconds
  344. 12:18:12 [INFO] Current TPS = 20
  345. 12:18:12 [INFO] Maximum memory: 7,159 MB.
  346. 12:18:12 [INFO] Allocated memory: 7,159 MB.
  347. 12:18:12 [INFO] Free memory: 6,909 MB.
  348. 12:18:12 [INFO] World "world": 256 chunks, 8 entities.
  349. 12:18:12 [INFO] Nether "world_nether": 625 chunks, 196 entities.
  350. 12:18:12 [INFO] The End "world_the_end": 0 chunks, 0 entities.
  351. 12:18:12 [INFO] World "pvp": 256 chunks, 2 entities.
  352. 12:18:12 [INFO] World "mining": 625 chunks, 292 entities.
  353. >
  354. [detached from 5218.minecraft]
  355. rbc@Caligari-Mint ~ $ lsa
  356. No command 'lsa' found, did you mean:
  357. Command 'lsh' from package 'lsh-client' (universe)
  358. Command 'lsw' from package 'suckless-tools' (universe)
  359. Command 'lst' from package 'lustre-utils' (universe)
  360. Command 'ls' from package 'coreutils' (main)
  361. Command 'lua' from package 'lua50' (universe)
  362. Command 'lua' from package 'lua5.1' (main)
  363. Command 'lua' from package 'lua5.2' (universe)
  364. Command 'lsar' from package 'unar' (universe)
  365. Command 'lsat' from package 'lsat' (universe)
  366. Command 'alsa' from package 'alsa-base' (main)
  367. Command 'lha' from package 'lhasa' (universe)
  368. Command 'lha' from package 'lha' (multiverse)
  369. Command 'lha' from package 'jlha-utils' (universe)
  370. Command 'sa' from package 'acct' (main)
  371. lsa: command not found
  372. rbc@Caligari-Mint ~ $ ls
  373. Backups minecraft minecraft.sh www
  374. rbc@Caligari-Mint ~ $ cd minecraft
  375. rbc@Caligari-Mint ~/minecraft $ ls
  376. 526.log 719.log banned-ips.txt craftbukkit-1.5.2.jar craftbukkit.jar lib oldspace plugins server2771.sh shops526 white-list.txt world_the_end
  377. 628.log 721.log banned-players.txt craftbukkit-1.6.1.jar crash-reports Minecraft_RKit.jar ops.txt plugins.1.5.2 server.log space world
  378. 630.log 726.log blacklist.txt craftbukkit630.jar help.yml minecraft.sh permissions517.yml pvp server.log.lck toolkit world526
  379. 702.log backup.sh bukkit.yml craftbukkit709.jar hs_err_pid1364.log mining permissions.yml rtoolkit.sh server.properties wepif.yml world_nether
  380. rbc@Caligari-Mint ~/minecraft $ less +G server.log
  381.  
  382.  
  383. 2013-07-27 12:17:57 [INFO] [Paintball] By blablubbabc enabled.
  384. 2013-07-27 12:17:57 [INFO] [CraftBook] Enabling CraftBook v2310-c7c8cf8
  385. 2013-07-27 12:17:57 [INFO] [CraftBook] CraftBook v3.7b5 is the latest version available, and the updatability of it is: NO_UPDATE. You currently have version 3.6.9 installed.
  386. 2013-07-27 12:17:57 [INFO] 1 cauldron recipe(s) loaded
  387. 2013-07-27 12:17:57 [INFO] [CraftBook] Enumerating chunks for self-triggered components...
  388. 2013-07-27 12:17:57 [INFO] [CraftBook] 3125 chunk(s) for 5 world(s) processed (38ms elapsed)
  389. 2013-07-27 12:17:57 [INFO] [ChestShop] Enabling ChestShop v3.5
  390. 2013-07-27 12:17:57 [INFO] [ChestShop] Lockette version 1.7.12 loaded.
  391. 2013-07-27 12:17:57 [INFO] [ChestShop] Vault loaded - using iConomy 7
  392. 2013-07-27 12:17:58 [INFO] [EssentialsChat] Enabling EssentialsChat v2.11.1
  393. 2013-07-27 12:17:58 [INFO] Server permissions file permissions.yml is empty, ignoring it
  394. 2013-07-27 12:17:58 [INFO] Done (9.446s)! For help, type "help" or "?"
  395. 2013-07-27 12:18:00 [INFO] --------- Checking version ----------ESC[m
  396. 2013-07-27 12:18:00 [INFO] [Paintball] There is a new version of paintball available: 1.2.2
  397. 2013-07-27 12:18:00 [INFO] [Paintball] Download at the bukkit dev page.
  398. 2013-07-27 12:18:00 [INFO] --------- ---------------- ----------ESC[m
  399. 2013-07-27 12:18:02 [INFO] ESC[m
  400. 2013-07-27 12:18:02 [INFO] ESC[0;33;1m **************************************************ESC[m
  401. 2013-07-27 12:18:02 [INFO] ESC[0;33;1m ----------------- PAINTBALL INFO -----------------ESC[m
  402. 2013-07-27 12:18:02 [INFO] ESC[m
  403. 2013-07-27 12:18:02 [INFO] ESC[0;31;1m License stuff:ESC[m
  404. 2013-07-27 12:18:02 [INFO] ESC[0;33;22m - Usage on own risk. I give no warranties for anything.ESC[m
  405. 2013-07-27 12:18:02 [INFO] ESC[0;33;22m - Do not modify. Use it as it is!ESC[m
  406. 2013-07-27 12:18:02 [INFO] ESC[0;33;22m - Do not redistribute/upload/use parts of it/copy/give away.ESC[m
  407. 2013-07-27 12:18:02 [INFO] ESC[0;33;22m - Do not use for commercial purposes!ESC[m
  408. 2013-07-27 12:18:02 [INFO] ESC[0;33;22m -> No benefits for paying players/donors!ESC[m
  409. 2013-07-27 12:18:02 [INFO] ESC[0;33;22m -> This also applies to any kind of add-on you are usingESC[m
  410. 2013-07-27 12:18:02 [INFO] ESC[0;33;22m related to this plugin!ESC[m
  411. 2013-07-27 12:18:02 [INFO] ESC[m
  412. 2013-07-27 12:18:02 [INFO] ESC[0;32;22m If you like this plugin: Give feedback and donate atESC[m
  413. 2013-07-27 12:18:02 [INFO] ESC[0;32;22m ->http://dev.bukkit.org/server-mods/paintball_pure_war/ ESC[m
  414. 2013-07-27 12:18:02 [INFO] ESC[m
  415. 2013-07-27 12:18:02 [INFO] ESC[0;32;1m Thank you and good shooting!ESC[m
  416. 2013-07-27 12:18:02 [INFO] ESC[0;32;1m - blablubbabcESC[m
  417. 2013-07-27 12:18:02 [INFO] ESC[m
  418. 2013-07-27 12:18:02 [INFO] ESC[0;33;1m **************************************************ESC[m
  419. 2013-07-27 12:18:02 [INFO] ESC[m
  420. 2013-07-27 12:18:02 [WARNING] Can't keep up! Did the system time change, or is the server overloaded?
  421. 2013-07-27 12:18:10 [INFO] Plugins (29): ESC[0;32;1mWorldEditESC[0;37;1m, ESC[0;32;1mVaultESC[0;37;1m, ESC[0;32;1mPermissionsExESC[0;37;1m, ESC[0;32;1mMultiverse-CoreESC[0;37;1m, ESC[0;32;1mLogBlockESC[0;37;1m, ESC[0;32;1mTerrainControlESC[0;37;1m, ESC[0;32;1mWorldGuardESC[0;37;1m, ESC[0;32;1mImInSpaceESC[0;37;1m, ESC[0;32;1miConomyESC[0;37;1m, ESC[0;32;1mSpaceShipESC[0;37;1m, ESC[0;32;1mDynamicTexturesESC[0;37;1m, ESC[0;32;1mAntiXRayESC[0;37;1m, ESC[0;32;1mLocketteESC[0;37;1m, ESC[0;32;1mProtocolLibESC[0;37;1m, ESC[0;32;1mGriefPreventionESC[0;37;1m, ESC[0;32;1mPwnFilterESC[0;37;1m, ESC[0;32;1mLiftESC[0;37;1m, ESC[0;32;1mEssentialsESC[0;37;1m, ESC[0;32;1mEssentialsSpawnESC[0;37;1m, ESC[0;32;1mMultiverse-PortalsESC[0;37;1m, ESC[0;32;1mMultiverse-InventoriesESC[0;37;1m, ESC[0;32;1mRegionForSaleESC[0;37;1m, ESC[0;32;1mTagAPIESC[0;37;1m, ESC[0;32;1mVanishNoPacketESC[0;37;1m, ESC[0;32;1mWebAuctionPlusESC[0;37;1m, ESC[0;32;1mPaintballESC[0;37;1m, ESC[0;32;1mCraftBookESC[0;37;1m, ESC[0;32;1mChestShopESC[0;37;1m, ESC[0;32;1mEssentialsChatESC[m
  422. 2013-07-27 12:18:11 [INFO] ESC[0;33;22mThere are ESC[0;31;1m0ESC[0;33;22m out of maximum ESC[0;31;1m10ESC[0;33;22m players online.ESC[m
  423. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mUptime:ESC[0;31;1m 26 secondsESC[m
  424. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mCurrent TPS = ESC[0;32;1m20ESC[m
  425. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mMaximum memory:ESC[0;31;1m 7,159 MB.ESC[m
  426. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mAllocated memory:ESC[0;31;1m 7,159 MB.ESC[m
  427. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mFree memory:ESC[0;31;1m 6,909 MB.ESC[m
  428. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mWorld "ESC[0;31;1mworldESC[0;33;22m": ESC[0;31;1m256ESC[0;33;22m chunks, ESC[0;31;1m8ESC[0;33;22m entities.ESC[m
  429. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mNether "ESC[0;31;1mworld_netherESC[0;33;22m": ESC[0;31;1m625ESC[0;33;22m chunks, ESC[0;31;1m196ESC[0;33;22m entities.ESC[m
  430. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mThe End "ESC[0;31;1mworld_the_endESC[0;33;22m": ESC[0;31;1m0ESC[0;33;22m chunks, ESC[0;31;1m0ESC[0;33;22m entities.ESC[m
  431. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mWorld "ESC[0;31;1mpvpESC[0;33;22m": ESC[0;31;1m256ESC[0;33;22m chunks, ESC[0;31;1m2ESC[0;33;22m entities.ESC[m
  432. 2013-07-27 12:18:12 [INFO] ESC[0;33;22mWorld "ESC[0;31;1mminingESC[0;33;22m": ESC[0;31;1m625ESC[0;33;22m chunks, ESC[0;31;1m292ESC[0;33;22m entities.ESC[m
  433. 2013-07-27 12:18:14 [SEVERE] Reached end of stream for /72.84.98.239
  434. server.log (END)
  435. ESC[A
  436.  
  437.  
  438. 2013-07-27 12:17:57 [INFO] [Paintball] Calculating done.
  439.  
  440.  
  441. :
  442. ESC[A
  443.  
  444.  
  445. 2013-07-27 12:17:57 [INFO] [Paintball] Calculating turret angles...
  446.  
  447.  
  448. :
  449. ESC[A
  450.  
  451.  
  452. 2013-07-27 12:17:57 [INFO] [Paintball] Plugin 'TagAPI' found. Using it now.
  453.  
  454.  
  455. :
  456. ESC[A
  457.  
  458.  
  459. 2013-07-27 12:17:57 [INFO] [Paintball] Plugin 'InSigns' not found. Additional sign features disabled.
  460.  
  461.  
  462. :
  463. ESC[A
  464.  
  465.  
  466. 2013-07-27 12:17:57 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 29
  467.  
  468.  
  469. :
  470. ESC[A
  471.  
  472.  
  473. 2013-07-27 12:17:57 [INFO] [Paintball] Loading the specified melody now: draw.txt
  474.  
  475.  
  476. :
  477. ESC[A
  478.  
  479.  
  480. 2013-07-27 12:17:57 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 43
  481.  
  482.  
  483. :
  484. ESC[A
  485.  
  486.  
  487. 2013-07-27 12:17:57 [INFO] [Paintball] Loading the specified melody now: defeat.txt
  488.  
  489.  
  490. :
  491. ESC[A
  492.  
  493.  
  494. 2013-07-27 12:17:57 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 20
  495.  
  496.  
  497. :
  498. ESC[A
  499.  
  500.  
  501. 2013-07-27 12:17:57 [INFO] [Paintball] Loading the specified melody now: win.txt
  502.  
  503.  
  504. :
  505. ESC[A
  506.  
  507.  
  508. 2013-07-27 12:17:57 [INFO] [Paintball] Using the default language now: enUS.txt
  509.  
  510.  
  511. :
  512. ESC[A
  513.  
  514.  
  515. 2013-07-27 12:17:57 [INFO] [Paintball] Skipped lines: 1
  516.  
  517.  
  518. :
  519. ESC[A
  520.  
  521.  
  522. 2013-07-27 12:17:56 [INFO] [Paintball] Scanned lines: 297
  523.  
  524.  
  525. :
  526. ESC[A
  527.  
  528.  
  529. 2013-07-27 12:17:56 [INFO] [Paintball] Loading the default language: enUS.txt
  530.  
  531.  
  532. :
  533. ESC[A
  534.  
  535.  
  536. 2013-07-27 12:17:56 [INFO] [Paintball] Enabling Paintball v1.1.8
  537.  
  538.  
  539. :
  540. ESC[A
  541.  
  542.  
  543. 2013-07-27 12:17:56 [INFO] [WebAuction+] Disabled, bye for now :-)
  544.  
  545.  
  546. :
  547. ESC[A
  548.  
  549.  
  550. 2013-07-27 12:17:56 [INFO] [WebAuction+] Disabled, bye for now :-)
  551.  
  552.  
  553. :
  554. ESC[A
  555.  
  556.  
  557. 2013-07-27 12:17:56 [SEVERE] [WebAuction+] *** Failed to load WebAuctionPlus. Please check your config.
  558.  
  559.  
  560. :
  561. ESC[A
  562.  
  563.  
  564. 2013-07-27 12:17:56 [INFO] [WebAuctionPlus] Enabling WebAuctionPlus v1.1.9
  565.  
  566.  
  567. :
  568. ESC[A
  569.  
  570.  
  571. 2013-07-27 12:17:56 [INFO] [VanishNoPacket] v3.18.2 loaded.
  572.  
  573.  
  574. :
  575. ESC[A
  576.  
  577.  
  578. 2013-07-27 12:17:56 [INFO] [VanishNoPacket] Now hooking into Essentials
  579.  
  580.  
  581. :
  582. ESC[A
  583.  
  584.  
  585. 2013-07-27 12:17:56 [INFO] [VanishNoPacket] Using color changing features of TagAPI.
  586.  
  587.  
  588. :
  589. ESC[A
  590.  
  591.  
  592. 2013-07-27 12:17:56 [INFO] [VanishNoPacket] Loading support for v1_6_R2
  593.  
  594.  
  595. :
  596. ESC[A
  597.  
  598.  
  599. 2013-07-27 12:17:56 [INFO] [VanishNoPacket] Enabling VanishNoPacket v3.18.2
  600.  
  601.  
  602. :
  603. ESC[A
  604.  
  605.  
  606. 2013-07-27 12:17:56 [INFO] [TagAPI] Using hooks for CraftBukkit via ProtocolLib
  607.  
  608.  
  609. :
  610. ESC[A
  611.  
  612.  
  613. 2013-07-27 12:17:56 [INFO] [TagAPI] Detected ProtocolLib, using that for handling!
  614.  
  615.  
  616. :
  617. ESC[A
  618.  
  619.  
  620. 2013-07-27 12:17:56 [INFO] [TagAPI] Enabling TagAPI v2.3
  621.  
  622.  
  623. :
  624. ESC[A
  625.  
  626.  
  627. 2013-07-27 12:17:56 [INFO] [RegionForSale] Region withdraw information are offset against plugin down-time (2085 seconds) ...
  628.  
  629.  
  630. :
  631. ESC[A
  632.  
  633.  
  634. 2013-07-27 12:17:56 [INFO] [RegionForSale] Loading regions for world 'mining'...
  635.  
  636.  
  637. :
  638. ESC[A
  639.  
  640.  
  641. 2013-07-27 12:17:56 [INFO] [RegionForSale] Loading regions for world 'pvp'...
  642.  
  643.  
  644. :
  645. ESC[A
  646.  
  647.  
  648. 2013-07-27 12:17:56 [INFO] [RegionForSale] Loading regions for world 'world_the_end'...
  649.  
  650.  
  651. :
  652. ESC[A
  653.  
  654.  
  655. 2013-07-27 12:17:56 [INFO] [RegionForSale] Loading regions for world 'world_nether'...
  656.  
  657.  
  658. :
  659. ESC[A
  660.  
  661.  
  662. 2013-07-27 12:17:56 [INFO] [RegionForSale] Loading regions for world 'world'...
  663.  
  664.  
  665. :
  666. ESC[A
  667.  
  668.  
  669. 2013-07-27 12:17:56 [INFO] [RegionForSale] Loading global configuration...
  670.  
  671.  
  672. :
  673. ESC[A
  674.  
  675.  
  676. 2013-07-27 12:17:56 [INFO] [RegionForSale] Enabling RegionForSale v2.2
  677.  
  678.  
  679. :
  680. ESC[B
  681. 2013-07-27 12:18:02 [INFO] ESC[0;33;22m - Usage on own risk. I give no warranties for anything.ESC[m
  682. :
  683. rbc@Caligari-Mint ~/minecraft $ cd ...
  684. -bash: cd: ...: No such file or directory
  685. rbc@Caligari-Mint ~/minecraft $ cd ..
  686. rbc@Caligari-Mint ~ $ ls
  687. Backups minecraft minecraft.sh www
  688. rbc@Caligari-Mint ~ $ ./minecraft.sh stop
  689. Stopping craftbukkit.jar
  690. craftbukkit.jar is stopped.
  691. rbc@Caligari-Mint ~ $ ls
  692. Backups minecraft minecraft.sh www
  693. rbc@Caligari-Mint ~ $ cd minecraft
  694. rbc@Caligari-Mint ~/minecraft $ ls
  695. 526.log 719.log banned-ips.txt craftbukkit-1.5.2.jar craftbukkit.jar lib oldspace plugins server2771.sh space world
  696. 628.log 721.log banned-players.txt craftbukkit-1.6.1.jar crash-reports Minecraft_RKit.jar ops.txt plugins.1.5.2 server.log toolkit world526
  697. 630.log 726.log blacklist.txt craftbukkit630.jar help.yml minecraft.sh permissions517.yml pvp server.properties wepif.yml world_nether
  698. 702.log backup.sh bukkit.yml craftbukkit709.jar hs_err_pid1364.log mining permissions.yml rtoolkit.sh shops526 white-list.txt world_the_end
  699. rbc@Caligari-Mint ~/minecraft $ cd plugins
  700. rbc@Caligari-Mint ~/minecraft/plugins $ ls
  701. AntiXRayData DynamicTextures GriefPrevention.jar Lockette Multiverse-Inventories-2.5.jar PluginMetrics SpaceShip.jar WebAuctionPlus
  702. AntiXRay.jar DynamicTextures.jar iConomy Lockette.jar Multiverse-Portals ProtocolLib TagAPI.jar WebAuctionPlus-1.1.9beta.jar
  703. ChestShop Essentials iConomy.jar LogBlock Multiverse-Portals-2.4.jar ProtocolLib-2.4.7.jar TerrainControl WorldEdit
  704. ChestShop.jar EssentialsChat.jar ImInSpace LogBlock.jar Paintball PwnFilter TerrainControl.jar WorldEdit.jar
  705. CraftBook Essentials.jar ImInSpace.jar Multiverse-Core paintballv1.1.8.jar PwnFilter.jar VanishNoPacket WorldGuard
  706. CraftBook.jar EssentialsSpawn.jar Lift Multiverse-Core-2.4.jar PermissionsEx RegionForSale VanishNoPacket.jar WorldGuard.jar
  707. DisguiseCraft GriefPreventionData Lift.jar Multiverse-Inventories PermissionsEx.jar RegionForSale_2.2.jar Vault.jar
  708. rbc@Caligari-Mint ~/minecraft/plugins $ cd WebAuctionPlus
  709. rbc@Caligari-Mint ~/minecraft/plugins/WebAuctionPlus $ ls
  710. config.yml
  711. rbc@Caligari-Mint ~/minecraft/plugins/WebAuctionPlus $ cd /var/www
  712. rbc@Caligari-Mint /var/www $ cd ..
  713. rbc@Caligari-Mint /var $ ls /www/ -l
  714. ls: cannot access /www/: No such file or directory
  715. rbc@Caligari-Mint /var $ ls /var/www/ -l
  716. total 32
  717. drwxr-xr-x 2 root root 4096 Jul 27 12:43 auction
  718. drwxr-xr-x 2 root root 4096 Jun 18 11:07 data
  719. -rw-r--r-- 1 root root 177 Jun 18 10:27 index.html
  720. drwxr-xr-x 3 root root 4096 Jun 18 11:53 speedtest-cli
  721. -rw-r--r-- 1 root root 6548 Jun 18 11:05 speedtest.php
  722. drwxr-xr-x 2 root root 4096 Jun 18 11:07 temp_down
  723. drwxr-xr-x 2 root root 4096 Jun 18 10:54 upload
  724. rbc@Caligari-Mint /var $ stat -c %U /var/www/
  725. root
  726. rbc@Caligari-Mint /var $ stat -c %G
  727. root
  728. rbc@Caligari-Mint /var $ cd ..
  729. rbc@Caligari-Mint / $ ls
  730. bin boot dev etc home initrd.img initrd.img.old lib lib64 lost+found media mnt opt proc root run sbin selinux srv sys temp tmp usr var vmlinuz
  731. rbc@Caligari-Mint / $ cd home
  732. rbc@Caligari-Mint /home $ ls
  733. euro rbc
  734. rbc@Caligari-Mint /home $ stat -c %U /home/rbc/
  735. rbc
  736. rbc@Caligari-Mint /home $ stat -c %G /home/rbc/
  737. rbc
  738. rbc@Caligari-Mint /home $ who
  739. euro tty8 2013-07-26 20:30 (:0)
  740. root pts/2 2013-07-27 12:42 (caligari-7.hsd1.tn.comcast.net)
  741. rbc pts/0 2013-07-27 12:16 (caligari-7.hsd1.tn.comcast.net)
  742. rbc@Caligari-Mint /home $ chmod -R u+rwX,g+ +  /var/www/
  743. chmod: changing permissions of `/var/www/': Operation not permitted
  744. chmod: changing permissions of `/var/www/upload': Operation not permitted
  745. chmod: changing permissions of `/var/www/upload/gen_upload_files.sh': Operation not permitted
  746. chmod: changing permissions of `/var/www/upload/upload_2': Operation not permitted
  747. chmod: changing permissions of `/var/www/upload/upload_8': Operation not permitted
  748. chmod: changing permissions of `/var/www/upload/upload_1': Operation not permitted
  749. chmod: changing permissions of `/var/www/upload/upload_4': Operation not permitted
  750. chmod: changing permissions of `/var/www/upload/upload_3': Operation not permitted
  751. chmod: changing permissions of `/var/www/upload/upload_6': Operation not permitted
  752. chmod: changing permissions of `/var/www/upload/upload_5': Operation not permitted
  753. chmod: changing permissions of `/var/www/upload/upload_7': Operation not permitted
  754. chmod: changing permissions of `/var/www/speedtest-cli': Operation not permitted
  755. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli': Operation not permitted
  756. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/speedtest-cli': Operation not permitted
  757. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/speedtest-cli-3': Operation not permitted
  758. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.gitignore': Operation not permitted
  759. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git': Operation not permitted
  760. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/logs': Operation not permitted
  761. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/logs/HEAD': Operation not permitted
  762. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/logs/refs': Operation not permitted
  763. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/logs/refs/remotes': Operation not permitted
  764. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/logs/refs/remotes/origin': Operation not permitted
  765. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/logs/refs/remotes/origin/HEAD': Operation not permitted
  766. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/logs/refs/heads': Operation not permitted
  767. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/logs/refs/heads/master': Operation not permitted
  768. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/packed-refs': Operation not permitted
  769. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/index': Operation not permitted
  770. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/HEAD': Operation not permitted
  771. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/refs': Operation not permitted
  772. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/refs/tags': Operation not permitted
  773. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/refs/remotes': Operation not permitted
  774. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/refs/remotes/origin': Operation not permitted
  775. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/refs/remotes/origin/HEAD': Operation not permitted
  776. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/refs/heads': Operation not permitted
  777. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/refs/heads/master': Operation not permitted
  778. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/description': Operation not permitted
  779. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/config': Operation not permitted
  780. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks': Operation not permitted
  781. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks/commit-msg.sample': Operation not permitted
  782. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks/applypatch-msg.sample': Operation not permitted
  783. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks/prepare-commit-msg.sample': Operation not permitted
  784. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks/update.sample': Operation not permitted
  785. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks/pre-rebase.sample': Operation not permitted
  786. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks/pre-commit.sample': Operation not permitted
  787. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks/pre-applypatch.sample': Operation not permitted
  788. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/hooks/post-update.sample': Operation not permitted
  789. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/info': Operation not permitted
  790. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/info/exclude': Operation not permitted
  791. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/objects': Operation not permitted
  792. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/objects/pack': Operation not permitted
  793. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/objects/pack/pack-b43f10a46832e1085b1ec083cf06952ef0525346.pack': Operation not permitted
  794. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/objects/pack/pack-b43f10a46832e1085b1ec083cf06952ef0525346.idx': Operation not permitted
  795. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/objects/info': Operation not permitted
  796. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/.git/branches': Operation not permitted
  797. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/README.md': Operation not permitted
  798. chmod: changing permissions of `/var/www/speedtest-cli/speedtest-cli/LICENSE': Operation not permitted
  799. chmod: changing permissions of `/var/www/temp_down': Operation not permitted
  800. chmod: changing permissions of `/var/www/temp_down/fails_1.jpg': Operation not permitted
  801. chmod: changing permissions of `/var/www/temp_down/fails_4.jpg': Operation not permitted
  802. chmod: changing permissions of `/var/www/temp_down/fails_6.jpg': Operation not permitted
  803. chmod: changing permissions of `/var/www/temp_down/fails_5.jpg': Operation not permitted
  804. chmod: changing permissions of `/var/www/temp_down/fails_7.jpg': Operation not permitted
  805. chmod: changing permissions of `/var/www/temp_down/fails_3.jpg': Operation not permitted
  806. chmod: changing permissions of `/var/www/temp_down/fails_8.jpg': Operation not permitted
  807. chmod: changing permissions of `/var/www/temp_down/fails_2.jpg': Operation not permitted
  808. chmod: changing permissions of `/var/www/index.html': Operation not permitted
  809. chmod: changing permissions of `/var/www/auction': Operation not permitted
  810. chmod: changing permissions of `/var/www/data': Operation not permitted
  811. chmod: changing permissions of `/var/www/data/data_18-06-2013.txt': Operation not permitted
  812. chmod: changing permissions of `/var/www/speedtest.php': Operation not permitted
  813. rbc@Caligari-Mint /home $ ls
  814. euro rbc
  815. rbc@Caligari-Mint /home $ cd rbc
  816. rbc@Caligari-Mint ~ $ ls
  817. Backups minecraft minecraft.sh www
  818. rbc@Caligari-Mint ~ $ ./minecraft.sh start
  819. Starting craftbukkit.jar...
  820. craftbukkit.jar is now running.
  821. rbc@Caligari-Mint ~ $ cd minecraft
  822. rbc@Caligari-Mint ~/minecraft $ less +G server.log
  823.  
  824.  
  825. 2013-07-27 13:14:17 [INFO] [WebAuction+] Enabled Task: Recent Sign (using single thread)
  826. 2013-07-27 13:14:17 [INFO] [WebAuctionPlus] [Metrics] Starting metrics..
  827. 2013-07-27 13:14:17 [INFO] [WebAuction+] Payment method enabled: iConomy 7
  828. 2013-07-27 13:14:17 [INFO] [Paintball] Enabling Paintball v1.1.8
  829. 2013-07-27 13:14:17 [INFO] [Paintball] Loading the default language: enUS.txt
  830. 2013-07-27 13:14:17 [INFO] [Paintball] Scanned lines: 297
  831. 2013-07-27 13:14:17 [INFO] [Paintball] Skipped lines: 1
  832. 2013-07-27 13:14:17 [INFO] [Paintball] Using the default language now: enUS.txt
  833. 2013-07-27 13:14:17 [INFO] [Paintball] Loading the specified melody now: win.txt
  834. 2013-07-27 13:14:17 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 20
  835. 2013-07-27 13:14:17 [INFO] [Paintball] Loading the specified melody now: defeat.txt
  836. 2013-07-27 13:14:17 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 43
  837. 2013-07-27 13:14:17 [INFO] [Paintball] Loading the specified melody now: draw.txt
  838. 2013-07-27 13:14:17 [INFO] [Paintball] Scanned .txt melody sucessfully. Lines: 29
  839. 2013-07-27 13:14:17 [INFO] [Paintball] Plugin 'InSigns' not found. Additional sign features disabled.
  840. 2013-07-27 13:14:17 [INFO] [Paintball] Plugin 'TagAPI' found. Using it now.
  841. 2013-07-27 13:14:17 [INFO] [Paintball] Calculating turret angles...
  842. 2013-07-27 13:14:17 [INFO] [Paintball] Calculating done.
  843. 2013-07-27 13:14:17 [INFO] [Paintball] By blablubbabc enabled.
  844. 2013-07-27 13:14:17 [INFO] [CraftBook] Enabling CraftBook v2310-c7c8cf8
  845. 2013-07-27 13:14:18 [INFO] [CraftBook] CraftBook v3.7b5 is the latest version available, and the updatability of it is: NO_UPDATE. You currently have version 3.6.9 installed.
  846. 2013-07-27 13:14:18 [INFO] 1 cauldron recipe(s) loaded
  847. 2013-07-27 13:14:18 [INFO] [CraftBook] Enumerating chunks for self-triggered components...
  848. 2013-07-27 13:14:18 [INFO] [CraftBook] 3125 chunk(s) for 5 world(s) processed (40ms elapsed)
  849. 2013-07-27 13:14:18 [INFO] [ChestShop] Enabling ChestShop v3.5
  850. 2013-07-27 13:14:18 [INFO] [ChestShop] Lockette version 1.7.12 loaded.
  851. 2013-07-27 13:14:18 [INFO] [ChestShop] Vault loaded - using iConomy 7
  852. 2013-07-27 13:14:18 [INFO] [EssentialsChat] Enabling EssentialsChat v2.11.1
  853. 2013-07-27 13:14:18 [INFO] Server permissions file permissions.yml is empty, ignoring it
  854. 2013-07-27 13:14:19 [INFO] Done (8.946s)! For help, type "help" or "?"
  855. 2013-07-27 13:14:20 [INFO] --------- Checking version ----------ESC[m
  856. 2013-07-27 13:14:20 [INFO] [Paintball] There is a new version of paintball available: 1.2.2
  857. 2013-07-27 13:14:20 [INFO] [Paintball] Download at the bukkit dev page.
  858. 2013-07-27 13:14:20 [INFO] --------- ---------------- ----------ESC[m
  859. 2013-07-27 13:14:22 [INFO] ESC[m
  860. 2013-07-27 13:14:22 [INFO] ESC[0;33;1m **************************************************ESC[m
  861. 2013-07-27 13:14:22 [INFO] ESC[0;33;1m ----------------- PAINTBALL INFO -----------------ESC[m
  862. 2013-07-27 13:14:22 [INFO] ESC[m
  863. 2013-07-27 13:14:22 [INFO] ESC[0;31;1m License stuff:ESC[m
  864. 2013-07-27 13:14:22 [INFO] ESC[0;33;22m - Usage on own risk. I give no warranties for anything.ESC[m
  865. 2013-07-27 13:14:22 [INFO] ESC[0;33;22m - Do not modify. Use it as it is!ESC[m
  866. 2013-07-27 13:14:22 [INFO] ESC[0;33;22m - Do not redistribute/upload/use parts of it/copy/give away.ESC[m
  867. 2013-07-27 13:14:22 [INFO] ESC[0;33;22m - Do not use for commercial purposes!ESC[m
  868. 2013-07-27 13:14:22 [INFO] ESC[0;33;22m -> No benefits for paying players/donors!ESC[m
  869. 2013-07-27 13:14:22 [INFO] ESC[0;33;22m -> This also applies to any kind of add-on you are usingESC[m
  870. 2013-07-27 13:14:22 [INFO] ESC[0;33;22m related to this plugin!ESC[m
  871. 2013-07-27 13:14:22 [INFO] ESC[m
  872. 2013-07-27 13:14:22 [INFO] ESC[0;32;22m If you like this plugin: Give feedback and donate atESC[m
  873. 2013-07-27 13:14:22 [INFO] ESC[0;32;22m ->http://dev.bukkit.org/server-mods/paintball_pure_war/ ESC[m
  874. 2013-07-27 13:14:22 [INFO] ESC[m
  875. 2013-07-27 13:14:22 [INFO] ESC[0;32;1m Thank you and good shooting!ESC[m
  876. 2013-07-27 13:14:22 [INFO] ESC[0;32;1m - blablubbabcESC[m
  877. 2013-07-27 13:14:22 [INFO] ESC[m
  878. 2013-07-27 13:14:22 [INFO] ESC[0;33;1m **************************************************ESC[m
  879. 2013-07-27 13:14:22 [INFO] ESC[m
  880. 2013-07-27 13:14:23 [WARNING] Can't keep up! Did the system time change, or is the server overloaded?
  881. server.log (END)
  882. ESC[A
  883.  
  884.  
  885. 2013-07-27 13:14:17 [INFO] [WebAuction+] Enabled Task: Shout Sign (using single thread)
  886.  
  887.  
  888. :
  889. ESC[A
  890.  
  891.  
  892. 2013-07-27 13:14:17 [INFO] [WebAuction+] Enabled Task: Sale Alert (always multi-threaded)
  893.  
  894.  
  895. :
  896. ESC[A
  897.  
  898.  
  899. 2013-07-27 13:14:17 [INFO] [WebAuction+] Loaded language file en.yml
  900.  
  901.  
  902. :
  903. ESC[A
  904.  
  905.  
  906. 2013-07-27 13:14:17 [INFO] [WebAuction+] Loaded 12 settings from db
  907.  
  908.  
  909. :
  910. ESC[A
  911.  
  912.  
  913. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Max Sell Price
  914.  
  915.  
  916. :
  917. ESC[A
  918.  
  919.  
  920. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Item Packs
  921.  
  922.  
  923. :
  924. ESC[A
  925.  
  926.  
  927. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: jQuery UI Pack
  928.  
  929.  
  930. :
  931. ESC[A
  932.  
  933.  
  934. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Website Theme
  935.  
  936.  
  937. :
  938. ESC[A
  939.  
  940.  
  941. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Inventory Rows
  942.  
  943.  
  944. :
  945. ESC[A
  946.  
  947.  
  948. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Custom Description
  949.  
  950.  
  951. :
  952. ESC[A
  953.  
  954.  
  955. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Currency Postfix
  956.  
  957.  
  958. :
  959. ESC[A
  960.  
  961.  
  962. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Currency Prefix
  963.  
  964.  
  965. :
  966. ESC[A
  967.  
  968.  
  969. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: CSRF Protection
  970.  
  971.  
  972. :
  973. ESC[A
  974.  
  975.  
  976. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Require Login
  977.  
  978.  
  979. :
  980. ESC[A
  981.  
  982.  
  983. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Language
  984.  
  985.  
  986. :
  987. ESC[A
  988.  
  989.  
  990. 2013-07-27 13:14:17 [INFO] [WebAuction+] Adding default setting for: Version
  991.  
  992.  
  993. :
  994. ESC[A
  995.  
  996.  
  997. 2013-07-27 13:14:17 [INFO] Adding column itemTitle to table WA_Auctions
  998.  
  999.  
  1000. :
  1001. ESC[A
  1002.  
  1003.  
  1004. 2013-07-27 13:14:17 [INFO] [WebAuction+] Creating table LogSales
  1005.  
  1006.  
  1007. :
  1008. ESC[A
  1009.  
  1010.  
  1011. 2013-07-27 13:14:17 [INFO] [WebAuction+] Creating table Settings
  1012.  
  1013.  
  1014. :
  1015. ESC[A
  1016.  
  1017.  
  1018. 2013-07-27 13:14:17 [INFO] [WebAuction+] Creating table ShoutSigns
  1019.  
  1020.  
  1021. :
  1022. ESC[A
  1023.  
  1024.  
  1025. 2013-07-27 13:14:17 [INFO] [WebAuction+] Creating table RecentSigns
  1026.  
  1027.  
  1028. :
  1029. ESC[A
  1030.  
  1031.  
  1032. 2013-07-27 13:14:17 [INFO] [WebAuction+] Creating table Players
  1033.  
  1034.  
  1035. :
  1036. ESC[A
  1037.  
  1038.  
  1039. 2013-07-27 13:14:17 [INFO] [WebAuction+] Creating table Items
  1040.  
  1041.  
  1042. :
  1043. ESC[A
  1044.  
  1045.  
  1046. 2013-07-27 13:14:16 [INFO] [WebAuction+] Creating table Auctions
  1047.  
  1048.  
  1049. :
  1050. ESC[A
  1051.  
  1052.  
  1053. 2013-07-27 13:14:16 [INFO] [WebAuction+] MySQL Initializing.
  1054.  
  1055.  
  1056. :
  1057. ESC[A
  1058.  
  1059.  
  1060. 2013-07-27 13:14:16 [INFO] [WebAuctionPlus] Enabling WebAuctionPlus v1.1.9
  1061.  
  1062.  
  1063. :
  1064. ESC[A
  1065.  
  1066.  
  1067. 2013-07-27 13:14:16 [INFO] [VanishNoPacket] v3.18.2 loaded.
  1068.  
  1069.  
  1070. :
  1071. ESC[A
  1072.  
  1073.  
  1074. 2013-07-27 13:14:16 [INFO] [VanishNoPacket] Now hooking into Essentials
  1075.  
  1076.  
  1077. :
  1078. ESC[A
  1079.  
  1080.  
  1081. 2013-07-27 13:14:16 [INFO] [VanishNoPacket] Using color changing features of TagAPI.
  1082.  
  1083.  
  1084. :
  1085. ESC[A
  1086.  
  1087.  
  1088. 2013-07-27 13:14:16 [INFO] [VanishNoPacket] Loading support for v1_6_R2
  1089.  
  1090.  
  1091. :
  1092. ESC[A
  1093.  
  1094.  
  1095. 2013-07-27 13:14:16 [INFO] [VanishNoPacket] Enabling VanishNoPacket v3.18.2
  1096.  
  1097.  
  1098. :
  1099. ESC[A
  1100.  
  1101.  
  1102. 2013-07-27 13:14:16 [INFO] [TagAPI] Using hooks for CraftBukkit via ProtocolLib
  1103.  
  1104.  
  1105. :
  1106. ESC[A
  1107.  
  1108.  
  1109. 2013-07-27 13:14:16 [INFO] [TagAPI] Detected ProtocolLib, using that for handling!
  1110.  
  1111.  
  1112. :
  1113. ESC[A
  1114.  
  1115.  
  1116. 2013-07-27 13:14:16 [INFO] [TagAPI] Enabling TagAPI v2.3
  1117.  
  1118.  
  1119. :
  1120. ESC[A
  1121.  
  1122.  
  1123. 2013-07-27 13:14:16 [INFO] [RegionForSale] Region withdraw information are offset against plugin down-time (3302 seconds) ...
  1124.  
  1125.  
  1126. :
  1127. ESC[A
  1128.  
  1129.  
  1130. 2013-07-27 13:14:16 [INFO] [RegionForSale] Loading regions for world 'mining'...
  1131.  
  1132.  
  1133. :
  1134. ESC[A
  1135.  
  1136.  
  1137. 2013-07-27 13:14:16 [INFO] [RegionForSale] Loading regions for world 'pvp'...
  1138.  
  1139.  
  1140. :
  1141. ESC[A
  1142.  
  1143.  
  1144. 2013-07-27 13:14:16 [INFO] [RegionForSale] Loading regions for world 'world_the_end'...
  1145.  
  1146.  
  1147. :
  1148. ESC[A
  1149.  
  1150.  
  1151. 2013-07-27 13:14:16 [INFO] [RegionForSale] Loading regions for world 'world_nether'...
  1152.  
  1153.  
  1154. :
  1155. ESC[A
  1156.  
  1157.  
  1158. 2013-07-27 13:14:16 [INFO] [RegionForSale] Loading regions for world 'world'...
  1159.  
  1160.  
  1161. :
  1162. ESC[A
  1163.  
  1164.  
  1165. 2013-07-27 13:14:16 [INFO] [RegionForSale] Loading global configuration...
  1166.  
  1167.  
  1168. :
  1169. ESC[A
  1170.  
  1171.  
  1172. 2013-07-27 13:14:16 [INFO] [RegionForSale] Enabling RegionForSale v2.2
  1173.  
  1174.  
  1175. :
  1176. ESC[B
  1177. 2013-07-27 13:14:17 [INFO] [Paintball] Plugin 'InSigns' not found. Additional sign features disabled.
  1178. :
  1179. ESC[B
  1180. 2013-07-27 13:14:17 [INFO] [Paintball] Plugin 'TagAPI' found. Using it now.
  1181. :
  1182. ESC[B
  1183. 2013-07-27 13:14:17 [INFO] [Paintball] Calculating turret angles...
  1184. :
  1185. ESC[B
  1186. 2013-07-27 13:14:17 [INFO] [Paintball] Calculating done.
  1187. :
  1188. ESC[B
  1189. 2013-07-27 13:14:17 [INFO] [Paintball] By blablubbabc enabled.
  1190. :
  1191. ESC[B
  1192. 2013-07-27 13:14:17 [INFO] [CraftBook] Enabling CraftBook v2310-c7c8cf8
  1193. :
  1194. ESC[B
  1195. 2013-07-27 13:14:18 [INFO] [CraftBook] CraftBook v3.7b5 is the latest version available, and the updatability of it is: NO_UPDATE. You currently have version 3.6.9 installed.
  1196. :
  1197. ESC[B
  1198. 2013-07-27 13:14:18 [INFO] 1 cauldron recipe(s) loaded
  1199. :
  1200. ESC[B
  1201. 2013-07-27 13:14:18 [INFO] [CraftBook] Enumerating chunks for self-triggered components...
  1202. :
  1203. ESC[B
  1204. 2013-07-27 13:14:18 [INFO] [CraftBook] 3125 chunk(s) for 5 world(s) processed (40ms elapsed)
  1205. :
  1206. ESC[B
  1207. 2013-07-27 13:14:18 [INFO] [ChestShop] Enabling ChestShop v3.5
  1208. :
  1209. ESC[B
  1210. 2013-07-27 13:14:18 [INFO] [ChestShop] Lockette version 1.7.12 loaded.
  1211. :
  1212. ESC[B
  1213. 2013-07-27 13:14:18 [INFO] [ChestShop] Vault loaded - using iConomy 7
  1214. :
  1215. ESC[B
  1216. 2013-07-27 13:14:18 [INFO] [EssentialsChat] Enabling EssentialsChat v2.11.1
  1217. :
  1218. ESC[B
  1219. 2013-07-27 13:14:18 [INFO] Server permissions file permissions.yml is empty, ignoring it
  1220. :
  1221. ESC[B
  1222. 2013-07-27 13:14:19 [INFO] Done (8.946s)! For help, type "help" or "?"
  1223. :
  1224. ESC[B
  1225. 2013-07-27 13:14:20 [INFO] --------- Checking version ----------ESC[m
  1226. :
  1227. ESC[B
  1228. 2013-07-27 13:14:20 [INFO] [Paintball] There is a new version of paintball available: 1.2.2
  1229. :
  1230. ESC[B
  1231. 2013-07-27 13:14:20 [INFO] [Paintball] Download at the bukkit dev page.
  1232. :
  1233. ESC[B
  1234. 2013-07-27 13:14:20 [INFO] --------- ---------------- ----------ESC[m
  1235. :
  1236. ESC[B
  1237. 2013-07-27 13:14:22 [INFO] ESC[m
  1238. :
  1239. ESC[B
  1240. 2013-07-27 13:14:22 [INFO] ESC[0;33;1m **************************************************ESC[m
  1241. :
  1242. ESC[B
  1243. 2013-07-27 13:14:22 [INFO] ESC[0;33;1m ----------------- PAINTBALL INFO -----------------ESC[m
  1244. :
  1245. ESC[A
  1246.  
  1247.  
  1248. 2013-07-27 13:14:17 [INFO] [WebAuction+] Creating table ShoutSigns
  1249.  
  1250.  
  1251. :
  1252. rbc@Caligari-Mint ~/minecraft $ ls
  1253. 526.log 719.log banned-ips.txt craftbukkit-1.5.2.jar craftbukkit.jar lib oldspace plugins server2771.sh shops526 white-list.txt world_the_end
  1254. 628.log 721.log banned-players.txt craftbukkit-1.6.1.jar crash-reports Minecraft_RKit.jar ops.txt plugins.1.5.2 server.log space world
  1255. 630.log 726.log blacklist.txt craftbukkit630.jar help.yml minecraft.sh permissions517.yml pvp server.log.lck toolkit world526
  1256. 702.log backup.sh bukkit.yml craftbukkit709.jar hs_err_pid1364.log mining permissions.yml rtoolkit.sh server.properties wepif.yml world_nether
  1257. rbc@Caligari-Mint ~/minecraft $ cd ..
  1258. rbc@Caligari-Mint ~ $ ls
  1259. Backups minecraft minecraft.sh www
  1260. rbc@Caligari-Mint ~ $ ./minecraft.sh stop
  1261. Stopping craftbukkit.jar
  1262. craftbukkit.jar is stopped.
  1263. rbc@Caligari-Mint ~ $ mysql -u root -p
  1264. Enter password:
  1265. Welcome to the MySQL monitor. Commands end with ; or \g.
  1266. Your MySQL connection id is 17
  1267. Server version: 5.6.11 MySQL Community Server (GPL)
  1268.  
  1269. Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
  1270.  
  1271. Oracle is a registered trademark of Oracle Corporation and/or its
  1272. affiliates. Other names may be trademarks of their respective
  1273. owners.
  1274.  
  1275. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  1276.  
  1277. mysql> SHOW DATABASES;
  1278. +--------------------+
  1279. | Database |
  1280. +--------------------+
  1281. | information_schema |
  1282. | logblock |
  1283. | mysql |
  1284. | performance_schema |
  1285. | test |
  1286. | webauctionplus |
  1287. +--------------------+
  1288. 6 rows in set (0.00 sec)
  1289.  
  1290. mysql> use webauctionplus;
  1291. Reading table information for completion of table and column names
  1292. You can turn off this feature to get a quicker startup with -A
  1293.  
  1294. Database changed
  1295. mysql> SHOW TABLES;
  1296. +--------------------------+
  1297. | Tables_in_webauctionplus |
  1298. +--------------------------+
  1299. | WA_Auctions |
  1300. | WA_Items |
  1301. | WA_LogSales |
  1302. | WA_Players |
  1303. | WA_RecentSigns |
  1304. | WA_Settings |
  1305. | WA_ShoutSigns |
  1306. +--------------------------+
  1307. 7 rows in set (0.00 sec)
  1308.  
  1309. mysql> exit;
  1310. Bye
  1311. rbc@Caligari-Mint ~ $ logout
  1312.  
  1313.  
  1314. [SSH] INFO: DISCONNECT
  1315.  
  1316. ***
  1317. *** DISCONNECT
  1318. *** time 13:17:58
  1319. ***
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement