{{-- Copyright (c) 2015 - 2017 Dane Everitt --}} {{-- Permission is hereby granted, free of charge, to any person obtaining a copy --}} {{-- of this software and associated documentation files (the "Software"), to deal --}} {{-- in the Software without restriction, including without limitation the rights --}} {{-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell --}} {{-- copies of the Software, and to permit persons to whom the Software is --}} {{-- furnished to do so, subject to the following conditions: --}} {{-- The above copyright notice and this permission notice shall be included in all --}} {{-- copies or substantial portions of the Software. --}} {{-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR --}} {{-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, --}} {{-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE --}} {{-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER --}} {{-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, --}} {{-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE --}} {{-- SOFTWARE. --}} @extends('layouts.admin') @section('title') Database Hosts → View → {{ $host->name }} @endsection @section('content-header')

{{ $host->name }}Viewing associated databases and details for this database host.

@endsection @section('content')

Host Details

The IP address or FQDN that should be used when attempting to connect to this MySQL host from the panel to add new databases.

The port that MySQL is running on for this host.

This setting does nothing other than default to this database host when adding a database to a server on the selected node.

User Details

The username of an account that has enough permissions to create new users and databases on the system.

The password to the account defined. Leave blank to continue using the assigned password.


The account defined for this database host must have the WITH GRANT OPTION permission. If the defined account does not have this permission requests to create databases will fail. Do not use the same account details for MySQL that you have defined for this panel.

Databases

@foreach($host->databases as $database) @endforeach
Server Database Name Username Connections From
{{ $database->server->name }} {{ $database->database }} {{ $database->username }} {{ $database->remote }}
@endsection @section('footer-scripts') @parent @endsection