@extends('layouts.admin') @section('title') Server — {{ $server->name }}: Databases @endsection @section('content-header')

{{ $server->name }}Manage server databases.

@endsection @section('content') @include('admin.servers.partials.navigation')
Database passwords can be viewed when visiting this server on the front-end.

Active Databases

@foreach($server->databases as $database) @if($database->max_connections != null) @else @endif @endforeach
Database Username Connections From Host Max Connections
{{ $database->database }} {{ $database->username }} {{ $database->remote }} {{ $database->host->host }}:{{ $database->host->port }}{{ $database->max_connections }}Unlimited

Create New Database

Select the host database server that this database should be created on.

s{{ $server->id }}_

This should reflect the IP address that connections are allowed from. Uses standard MySQL notation. If unsure leave as %.

This should reflect the max number of concurrent connections from this user to the database. Leave empty for unlimited.

@endsection @section('footer-scripts') @parent @endsection