请先输入您的联系方式
ravel-admin name
|--------------------------------------------------------------------------
|
| This value is the name of laravel-admin, This setting is displayed on the
| login page.
|
*/
'name' => 'Eisoo-admin',
/*
|--------------------------------------------------------------------------
| Laravel-admin logo
|--------------------------------------------------------------------------
|
| The logo of all admin pages. You can also set it as an image by using a
| `img` tag, eg ''.
|
*/
'logo' => 'Eisoo admin',
/*
|--------------------------------------------------------------------------
| Laravel-admin mini logo
|--------------------------------------------------------------------------
|
| The logo of all admin pages when the sidebar menu is collapsed. You can
| also set it as an image by using a `img` tag, eg
| '
'.
|
*/
'logo-mini' => 'Eisoo',
/*
|--------------------------------------------------------------------------
| Laravel-admin route settings
|--------------------------------------------------------------------------
|
| The routing configuration of the admin page, including the path prefix,
| the controller namespace, and the default middleware. If you want to
| access through the root path, just set the prefix to empty string.
|
*/
'domain'=>'http://admin.aishu.cn/',
'route' => [
'domain'=>'http://admin.aishu.cn',
'prefix' => 'eisooAdmin',
'namespace' => 'App\\Admin\\Controllers',
'middleware' => ['web', 'admin', 'admin.lock','admin.session'],
],
/*
|--------------------------------------------------------------------------
| Laravel-admin install directory
|--------------------------------------------------------------------------
|
| The installation directory of the controller and routing configuration
| files of the administration page. The default is `app/Admin`, which must
| be set before running `artisan admin::install` to take effect.
|
*/
'directory' => app_path('Admin'),
/*
|--------------------------------------------------------------------------
| Laravel-admin html title
|--------------------------------------------------------------------------
|
| Html title for all pages.
|
*/
'title' => 'Admin',
/*
|--------------------------------------------------------------------------
| Access via `https`
|--------------------------------------------------------------------------
|
| If your page is going to be accessed via https, set it to `true`.
|
*/
'https' => env('ADMIN_HTTPS', false),
/*
|--------------------------------------------------------------------------
| 压缩css和js
|--------------------------------------------------------------------------
|
| 启用压缩设置为true
|
*/
'minify_assets' => [
//不需要被压缩的文件
'excepts' => [
'/vendor/ckeditor/ckeditor.js',
'/vendor/ckeditor/adapters/jquery.js'
],
],
/*
|--------------------------------------------------------------------------
| Laravel-admin auth setting
|--------------------------------------------------------------------------
|
| Authentication settings for all admin pages. Include an authentication
| guard and a user provider setting of authentication driver.
|
| You can specify a controller for `login` `logout` and other auth routes.
|
*/
'auth' => [
'controller' => App\Admin\Controllers\AuthController::class,
'guards' => [
'admin' => [
'driver' => 'session',
'provider' => 'admin',
],
],
'providers' => [
'admin' => [
'driver' => 'eloquent',
'model' => Encore\Admin\Auth\Database\Administrator::class,
],
],
],
/*
|--------------------------------------------------------------------------
| Laravel-admin upload setting
|--------------------------------------------------------------------------
|
| File system configuration for form upload files and images, including
| disk and upload path.
|
*/
'upload' => [
// Disk in `config/filesystem.php`.
'disk' => 'cosv5',
// Image and file upload path under the disk above.
'directory' => [
'image' => 'images',
'file' => 'files',
],
],
/*
|--------------------------------------------------------------------------
| Laravel-admin database settings
|--------------------------------------------------------------------------
|
| Here are database settings for laravel-admin builtin model & tables.
|
*/
'database' => [
// Database connection for following tables.
'connection' => '',
// User tables and model.
'users_table' => 'admin_users',
'users_model' => App\Admin\Administrator::class,
// 'users_model' => Encore\Admin\Auth\Database\Administrator::class,
// Role table and model.
'roles_table' => 'admin_roles',
'roles_model' => Encore\Admin\Auth\Database\Role::class,
// Permission table and model.
'permissions_table' => 'admin_permissions',
'permissions_model' => Encore\Admin\Auth\Database\Permission::class,
// Menu table and model.
'menu_table' => 'admin_menu',
'menu_model' => Encore\Admin\Auth\Database\Menu::class,
// Pivot table for table above.
'operation_log_table' => 'admin_operation_log',
'user_permissions_table' => 'admin_user_permissions',
'role_users_table' => 'admin_role_users',
'role_permissions_table' => 'admin_role_permissions',
'role_menu_table' => 'admin_role_menu',
],
/*
|--------------------------------------------------------------------------
| User operation log setting
|--------------------------------------------------------------------------
|
| By setting this option to open or close operation log in laravel-admin.
|
*/
'operation_log' => [
'enable' => true,
/*
* Only logging allowed methods in the list
*/
'allowed_methods' => ['GET', 'HEAD', 'POST', 'PUT', 'DELETE', 'CONNECT', 'OPTIONS', 'TRACE', 'PATCH'],
/*
* Routes that will not log to database.
*
* All method to path like: admin/auth/logs
* or specific method to path like: get:admin/auth/logs.
*/
'except' => [
'admin/auth/logs*',
],
],
/*
|--------------------------------------------------------------------------
| Admin map field provider
|--------------------------------------------------------------------------
|
| Supported: "tencent", "google", "yandex".
|
*/
'map_provider' => 'tencent',
/*
|--------------------------------------------------------------------------
| Application Skin
|--------------------------------------------------------------------------
|
| This value is the skin of admin pages.
| @see https://adminlte.io/docs/2.4/layout
|
| Supported:
| "skin-blue", "skin-blue-light", "skin-yellow", "skin-yellow-light",
| "skin-green", "skin-green-light", "skin-purple", "skin-purple-light",
| "skin-red", "skin-red-light", "skin-black", "skin-black-light".
|
*/
'skin' => 'skin-blue-light',
/*
|--------------------------------------------------------------------------
| Application layout
|--------------------------------------------------------------------------
|
| This value is the layout of admin pages.
| @see https://adminlte.io/docs/2.4/layout
|
| Supported: "fixed", "layout-boxed", "layout-top-nav", "sidebar-collapse",
| "sidebar-mini".
|
*/
'layout' => ['sidebar-mini'],
/*
|--------------------------------------------------------------------------
| Login page background image
|--------------------------------------------------------------------------
|
| This value is used to set the background image of login page.
|
*/
'login_background_image' => 'https://new-official-website-1256829807.cos.ap-shanghai.myqcloud.com/images/cdm(4).jpg',
/*
|--------------------------------------------------------------------------
| Show version at footer
|--------------------------------------------------------------------------
|
| Whether to display the version number of laravel-admim at the footer of
| each page
|
*/
'show_version' => true,
/*
|--------------------------------------------------------------------------
| Show environment at footer
|--------------------------------------------------------------------------
|
| Whether to display the environment at the footer of each page
|
*/
'show_environment' => true,
/*
|--------------------------------------------------------------------------
| Menu bind to permission
|--------------------------------------------------------------------------
|
| whether enable menu bind to a permission
*/
'menu_bind_permission' => false,
/*
|--------------------------------------------------------------------------
| Enable default breadcrumb
|--------------------------------------------------------------------------
|
| Whether enable default breadcrumb for every page content.
*/
'enable_default_breadcrumb' => true,
/*
* |------------------------------------------------------------------------
* |使用新的数据操作样式
* |------------------------------------------------------------------------
* |
*/
'grid_action_class' => \Encore\Admin\Grid\Displayers\DropdownActions::class,
/*
|--------------------------------------------------------------------------
| Extension Directory
|--------------------------------------------------------------------------
|
| When you use command `php artisan admin:extend` to generate extensions,
| the extension files will be generated in this directory.
*/
'extension_dir' => app_path('Admin/Extensions'),
/*
|--------------------------------------------------------------------------
| Settings for extensions.
|--------------------------------------------------------------------------
|
| You can find all available extensions here
| https://github.com/laravel-admin-extensions.
|
*/
'extensions' => [
'media-manager' => [
'disk' => 'admin' // 指向config/filesystem.php中设置的disk
],
'material-ui' => [
// 如果要关掉这个扩展,设置为false
'enable' => false
],
'api-tester' => [
// route prefix for APIs
'prefix' => 'api',
// auth guard for api
'guard' => 'api',
// If you are not using the default user model as the authentication model, set it up
'user_retriever' => function ($id) {
return \App\User::find($id);
},
],
'chartjs' => [
'enable' => true,
],
'simditor' => [
// Set to false if you want to disable this extension
'enable' => true,
// Editor configuration
'config' => [
'upload' => [
'url' => '/admin/api/upload', # example api route: admin/api/upload
'fileKey' => 'upload_file',
'connectionCount' => 3,
'leaveConfirm' => 'Uploading is in progress, are you sure to leave this page?'
],
'tabIndent' => true,
'toolbar' => ['title', 'bold', 'italic', 'underline', 'strikethrough', 'fontScale', 'color', '|', 'ol', 'ul', 'blockquote', 'code', 'table', '|', 'link', 'image', 'hr', '|', 'indent', 'outdent', 'alignment'],
'toolbarFloat' => false,
'toolbarFloatOffset' => 0,
'toolbarHidden' => false,
'pasteImage' => true,
'cleanPaste' => false,
]
],
//省市县三级联动
'china-distpicker' => [
// 如果要关掉这个扩展,设置为false
'enable' => true,
],
//后台图片点击放大
'grid-lightbox'=>[
'enable'=>true,
],
'editormd' => [
// Set to false if you want to disable this extension
'enable' => true,
// Set to true if you want to take advantage the screen length for your editormd instance.
'wideMode' => false,
// Set to true when the instance included in larave-admin tab component.
'dynamicMode' => false,
// Editor.js configuration (Refer to http://pandao.github.io/editor.md/)
'config' =>
[
'path' => '/vendor/laravel-admin-ext/editormd/editormd-1.5.0/lib/',
'width' => '100%',
'height' => 600,
'emoji' => false,
'imageUpload'=> true,
'imageFormats'=>["jpg", "jpeg", "gif", "png", "bmp", "webp"],
'imageUploadURL' => "/ckeditor/upload",
]
]
],
];
全球数据
年复合增长率
实时数据
占比
IT设备故障造成的
计划外宕机损失
智能数据存储助力企业数字化转型
辅以高性能、高可靠特性,提供快速、平稳、可靠的数据存储服务
智能数据均衡:通过RAID 2.0技术,实现数据智能横向流动,硬盘内部负载均衡,维持容量和性能的动态均衡。
智能数据分层:通过自动分析识别冷热数据,将热数据迁移至高性能层,将冷数据迁移至大容量层,实现数据的纵向流动。
智能资源调配:通过业务优先级和流控管理,可将核心业务与边缘业务数据进行分流,保障核心业务资源。
RAID 2.0:通过底层介质虚拟化,将数据块均衡分布在每个成员盘中,消除热点盘带来的性能瓶颈问题。
SSD闪存加速:通过SSD的高性能、低时延特性,加速数据读取,提升存储性能。
并行架构:SAN与NAS一体化并行架构,无冗长IO路径,直接访问底层硬盘,性能更优。
高可靠:全冗余部件,99.9999%的方案级高可靠性,跨站点坏块自动修复,多对多快速重构等多手段提升存储的可靠性。
存储双活:一体化SAN与NAS存储双活、双仲裁、消除存储与仲裁的单点故障,保障业务连续性。
异地灾备:支持同步/异步复制,支持存储两地三中心解决方案,进一步加固数据安全性。
型号 | AS5000E | AS5000F | AF5000 |
---|---|---|---|
控制器 | 多控,最大 16 控 | 多控,最大 16 控 | 多控,最大 16 控 |
高速缓存 | 128GB ~ 1024GB | 256GB ~ 2048GB | 192GB ~ 2TB/双控 |
支持的存储协议 | FC、 FCoE、 iSCSI、 NFS、 CIFS、 HTTP、 FTP | FC、 FCoE、 iSCSI、 Infiniband、 NFS、 CIFS、 HTTP、 FTP | FC、iSCSI |
主机接口类型 | 8Gb / 16Gb / 32Gb FC、 10Gb FCoE、 1/ 10 / 25 / 40 / 100Gb Ethernet | 8Gb / 16Gb / 32Gb FC、 10Gb FCoE、 1 / 10 / 25 / 40 / 100Gb Ethernet、 56Gbps InfiniBand | 8Gb / 16Gb / 32Gb FC、1 / 10 / 25 / 40 / 100Gb Ethernet |
硬盘通道 | 4 * 4 * 12Gbps SAS | 4 * 4 * 12Gbps SAS | 100G ROCE、4 * 4 * 12Gbps SAS |
支持硬盘类型 | SSD / SAS / NL SAS | SSD / SAS / NL SAS | NVMe SSD、SAS SSD |
最大硬盘数 | 1200 | 1200 | 6400 |
支持RAID级别 | RAID 0、 1、 3、 5、 6、 10、 50、 RAID 2.0 技术 | RAID 0、 1、 3、 5、 6、 10、 50、 RAID 2.0 技术 | RAID 5、 RAID 6、 RAID-TP (容忍3盘 | 同时失效)
高级软件功能 | 卷镜像 / 快照 / 卷拷贝 / 克隆 / 远程复制 / 数据分层 / 服务质量控制 / 缓存分区 / 异构虚拟化 / Flash Cache / WORM / 存储双活 / NAS 双活 / 一体化备份 | 智能在线重删、智能在线压缩、智能精简配置、智能异构虚拟化、智能LUN迁移、智能服务质量控制、智能全互联架构、快照、持续数据保护、阵列双活、内双活、克隆、远程复制、云复制、云备份 |
底层采用RAID 2.0技术,SAN与NAS并行统一架构,辅以多种性能加速与数据保护手段,满足客户多样化的数据存储需求。
•一体化SAN与NAS,RAID 2.0架构,全局均衡,重构速度提升10倍
•多种性能加速手段保障核心业务性能,SSD与HDD的融合提升性价比
•AnyBackup的统一数据保护,为数据安全保驾护航
AnyStorage一体化SAN与NAS双活设计,免网关、免NAS机头,简化部署,保障业务连续性,实现RPO=0,RTO≈0。
•双存储、双仲裁、消除存储与仲裁单点故障
•真A-A双活、双写优化提升性能,跨站点坏块修复,增强数据安全
•AnyBackup集秒级、分钟级、小时级灾备技术于一身,提供创新的超可用性体验
自然灾害,法规遵从都促使两地三中心的灾备建设,AnyStorage的两地三中心解决方案,同时解决了业务连续性与数据灾备两大难题,最大限度保障数据安全。
•SAN与NAS一体化双活,消除存储单点故障,保障业务连续性
•三份在线数据+两份离线数据,全方位保护数据安全
•AnyBackup 全栈超可用的灾备云为数据安全再添保护