第六篇horizon— Web管理界面
一、horizon 介绍:
理解 horizon
Horizon 为 Openstack 提供一个 WEB 前端的管理界面 (UI 服务 )通过 Horizone 所提供的 DashBoard 服务 , 管理员可以使用通过 WEB UI 对 Openstack 整体云环境进行管理 , 并可直观看到各种操作结果与运行状态。

DashBoard 与其他组件的关系

登陆 Dashboard 界面
启动客户端浏览器,于地址栏输入:
http://Horizone_server_ip/dashboard

二、 dashbord 的配置文件:
vim /etc/openstack-dashboard/local_settings

-- coding: utf-8 --

import os

from django.utils.translation import ugettext_lazy as _

from openstack_dashboard.settings import HORIZON_CONFIG

DEBUG = False

WEBROOT is the location relative to Webserver root

should end with a slash.

WEBROOT = ‘/dashboard/’
#LOGIN_URL = WEBROOT + ‘auth/login/’
#LOGOUT_URL = WEBROOT + ‘auth/logout/’

LOGIN_REDIRECT_URL can be used as an alternative for

HORIZON_CONFIG.user_home, if user_home is not set.

Do not set it to ‘/home/’, as this will cause circular redirect loop

#LOGIN_REDIRECT_URL = WEBROOT

If horizon is running in production (DEBUG is False), set this

with the list of host/domain names that the application can serve.

For more information see:

https://docs.djangoproject.com/en/dev/ref/settings/#allowed-hosts

ALLOWED_HOSTS = [‘horizon.example.com’, ‘localhost’,’*’]

Set SSL proxy settings:

Pass this header from the proxy after terminating the SSL,

and don’t forget to strip it from the client’s request.

For more information see:

https://docs.djangoproject.com/en/dev/ref/settings/#secure-proxy-ssl-header

#SECURE_PROXY_SSL_HEADER = (‘HTTP_X_FORWARDED_PROTO’, ‘https’)

If Horizon is being served through SSL, then uncomment the following two

settings to better secure the cookies from security exploits

#CSRF_COOKIE_SECURE = True
#SESSION_COOKIE_SECURE = True

The absolute path to the directory where message files are collected.

The message file must have a .json file extension. When the user logins to

horizon, the message files collected are processed and displayed to the user.

#MESSAGES_PATH=None

Overrides for OpenStack API versions. Use this setting to force the

OpenStack dashboard to use a specific API version for a given service API.

Versions specified here should be integers or floats, not strings.

NOTE: The version should be formatted as it appears in the URL for the

service API. For example, The identity service APIs have inconsistent

use of the decimal point, so valid options would be 2.0 or 3.

Minimum compute version to get the instance locked status is 2.9.

OPENSTACK_API_VERSIONS = {

“data-processing”: 1.1,

"identity": 3,
"image": 2,
"volume": 2,
"compute": 2,

}

Set this to True if running on a multi-domain model. When this is enabled, it

will require the user to enter the Domain name in addition to the username

for login.

OPENSTACK_KEYSTONE_MULTIDOMAIN_SUPPORT = True

Overrides the default domain used when running on single-domain model

with Keystone V3. All entities will be created in the default domain.

NOTE: This value must be the name of the default domain, NOT the ID.

Also, you will most likely have a value in the keystone policy file like this

“cloud_admin”: “rule:admin_required and domain_id:”

This value must be the name of the domain whose ID is specified there.

OPENSTACK_KEYSTONE_DEFAULT_DOMAIN = ‘Default’

Set this to True to enable panels that provide the ability for users to

manage Identity Providers (IdPs) and establish a set of rules to map

federation protocol attributes to Identity API attributes.

This extension requires v3.0+ of the Identity API.

#OPENSTACK_KEYSTONE_FEDERATION_MANAGEMENT = False

Set Console type:

valid options are “AUTO”(default), “VNC”, “SPICE”, “RDP”, “SERIAL” or None

Set to None explicitly if you want to deactivate the console.

#CONSOLE_TYPE = “AUTO”

If provided, a “Report Bug” link will be displayed in the site header

which links to the value of this setting (ideally a URL containing

information on how to report issues).

#HORIZON_CONFIG[“bug_url”] = “http://bug-report.example.com”

Show backdrop element outside the modal, do not close the modal

after clicking on backdrop.

#HORIZON_CONFIG[“modal_backdrop”] = “static”

Specify a regular expression to validate user passwords.

#HORIZON_CONFIG[“password_validator”] = {

“regex”: ‘.*’,

“help_text”: _(“Your password does not meet the requirements.”),

#}

Disable simplified floating IP address management for deployments with

multiple floating IP pools or complex network requirements.

#HORIZON_CONFIG[“simple_ip_management”] = False

Turn off browser autocompletion for forms including the login form and

the database creation workflow if so desired.

#HORIZON_CONFIG[“password_autocomplete”] = “off”

Setting this to True will disable the reveal button for password fields,

including on the login form.

#HORIZON_CONFIG[“disable_password_reveal”] = False

LOCAL_PATH = ‘/tmp’

Set custom secret key:

You can either set it to a specific value or you can let horizon generate a

default secret key that is unique on this machine, e.i. regardless of the

amount of Python WSGI workers (if used behind Apache+mod_wsgi): However,

there may be situations where you would want to set this explicitly, e.g.

when multiple dashboard instances are distributed on different machines

(usually behind a load-balancer). Either you have to make sure that a session

gets all requests routed to the same dashboard instance or you set the same

SECRET_KEY for all of them.

SECRET_KEY=‘852c7ef13d000ba1bf5d’

We recommend you use memcached for development; otherwise after every reload

of the django development server, you will have to login again. To use

memcached set CACHES to something like

SESSION_ENGINE = ‘django.contrib.sessions.backends.cache’

CACHES = {
‘default’: {
‘BACKEND’: ‘django.core.cache.backends.memcached.MemcachedCache’,
‘LOCATION’: ‘controller:11211’,
},
}

#CACHES = {

‘default’: {

‘BACKEND’: ‘django.core.cache.backends.locmem.LocMemCache’,

},

#}

Send email to the console by default

EMAIL_BACKEND = ‘django.core.mail.backends.console.EmailBackend’

Or send them to /dev/null

#EMAIL_BACKEND = ‘django.core.mail.backends.dummy.EmailBackend’

Configure these for your outgoing email host

#EMAIL_HOST = ‘smtp.my-company.com’
#EMAIL_PORT = 25
#EMAIL_HOST_USER = ‘djangomail’
#EMAIL_HOST_PASSWORD = ‘top-secret!’

For multiple regions uncomment this configuration, and add (endpoint, title).

#AVAILABLE_REGIONS = [

(‘http://cluster1.example.com:5000/v2.0’, ‘cluster1’),

(‘http://cluster2.example.com:5000/v2.0’, ‘cluster2’),

#]

OPENSTACK_HOST = “controller”
OPENSTACK_KEYSTONE_URL = “http://%s:5000/v3” % OPENSTACK_HOST
OPENSTACK_KEYSTONE_DEFAULT_ROLE = “user”

Enables keystone web single-sign-on if set to True.

#WEBSSO_ENABLED = False

Determines which authentication choice to show as default.

#WEBSSO_INITIAL_CHOICE = “credentials”

The list of authentication mechanisms which include keystone

federation protocols and identity provider/federation protocol

mapping keys (WEBSSO_IDP_MAPPING). Current supported protocol

IDs are ‘saml2’ and ‘oidc’ which represent SAML 2.0, OpenID

Connect respectively.

Do not remove the mandatory credentials mechanism.

Note: The last two tuples are sample mapping keys to a identity provider

and federation protocol combination (WEBSSO_IDP_MAPPING).

#WEBSSO_CHOICES = (

(“credentials”, _(“Keystone Credentials”)),

(“oidc”, _(“OpenID Connect”)),

(“saml2”, _(“Security Assertion Markup Language”)),

(“acme_oidc”, “ACME - OpenID Connect”),

(“acme_saml2”, “ACME - SAML2”),

#)

A dictionary of specific identity provider and federation protocol

combinations. From the selected authentication mechanism, the value

will be looked up as keys in the dictionary. If a match is found,

it will redirect the user to a identity provider and federation protocol

specific WebSSO endpoint in keystone, otherwise it will use the value

as the protocol_id when redirecting to the WebSSO by protocol endpoint.

NOTE: The value is expected to be a tuple formatted as: (<idp_id>, <protocol_id>).

#WEBSSO_IDP_MAPPING = {

“acme_oidc”: (“acme”, “oidc”),

“acme_saml2”: (“acme”, “saml2”),

#}

The Keystone Provider drop down uses Keystone to Keystone federation

to switch between Keystone service providers.

Set display name for Identity Provider (dropdown display name)

#KEYSTONE_PROVIDER_IDP_NAME = “Local Keystone”

This id is used for only for comparison with the service provider IDs. This ID

should not match any service provider IDs.

#KEYSTONE_PROVIDER_IDP_ID = “localkeystone”

Disable SSL certificate checks (useful for self-signed certificates):

#OPENSTACK_SSL_NO_VERIFY = True

The CA certificate to use to verify SSL connections

#OPENSTACK_SSL_CACERT = ‘/path/to/cacert.pem’

The OPENSTACK_KEYSTONE_BACKEND settings can be used to identify the

capabilities of the auth backend for Keystone.

If Keystone has been configured to use LDAP as the auth backend then set

can_edit_user to False and name to ‘ldap’.

TODO(tres): Remove these once Keystone has an API to identify auth backend.

OPENSTACK_KEYSTONE_BACKEND = {
‘name’: ‘native’,
‘can_edit_user’: True,
‘can_edit_group’: True,
‘can_edit_project’: True,
‘can_edit_domain’: True,
‘can_edit_role’: True,
}

Setting this to True, will add a new “Retrieve Password” action on instance,

allowing Admin session password retrieval/decryption.

#OPENSTACK_ENABLE_PASSWORD_RETRIEVE = False

This setting allows deployers to control whether a token is deleted on log

out. This can be helpful when there are often long running processes being

run in the Horizon environment.

#TOKEN_DELETE_DISABLED = False

The Launch Instance user experience has been significantly enhanced.

You can choose whether to enable the new launch instance experience,

the legacy experience, or both. The legacy experience will be removed

in a future release, but is available as a temporary backup setting to ensure

compatibility with existing deployments. Further development will not be

done on the legacy experience. Please report any problems with the new

experience via the Launchpad tracking system.

Toggle LAUNCH_INSTANCE_LEGACY_ENABLED and LAUNCH_INSTANCE_NG_ENABLED to

determine the experience to enable. Set them both to true to enable

both.

#LAUNCH_INSTANCE_LEGACY_ENABLED = True
#LAUNCH_INSTANCE_NG_ENABLED = False

A dictionary of settings which can be used to provide the default values for

properties found in the Launch Instance modal.

#LAUNCH_INSTANCE_DEFAULTS = {

‘config_drive’: False,

‘enable_scheduler_hints’: True,

‘disable_image’: False,

‘disable_instance_snapshot’: False,

‘disable_volume’: False,

‘disable_volume_snapshot’: False,

‘create_volume’: True,

#}

The Xen Hypervisor has the ability to set the mount point for volumes

attached to instances (other Hypervisors currently do not). Setting

can_set_mount_point to True will add the option to set the mount point

from the UI.

OPENSTACK_HYPERVISOR_FEATURES = {
‘can_set_mount_point’: False,
‘can_set_password’: False,
‘requires_keypair’: False,
‘enable_quotas’: True
}

The OPENSTACK_CINDER_FEATURES settings can be used to enable optional

services provided by cinder that is not exposed by its extension API.

OPENSTACK_CINDER_FEATURES = {
‘enable_backup’: False,
}

The OPENSTACK_NEUTRON_NETWORK settings can be used to enable optional

services provided by neutron. Options currently available are load

balancer service, security groups, quotas, VPN service.

OPENSTACK_NEUTRON_NETWORK = {
‘enable_router’: True,
‘enable_quotas’: True,
‘enable_ipv6’: True,
‘enable_distributed_router’: False,
‘enable_ha_router’: False,
‘enable_lb’: True,
‘enable_firewall’: True,
‘enable_vpn’: True,
‘enable_fip_topology_check’: True,

# Default dns servers you would like to use when a subnet is
# created.  This is only a default, users can still choose a different
# list of dns servers when creating a new subnet.
# The entries below are examples only, and are not appropriate for
# real deployments
# 'default_dns_nameservers': ["8.8.8.8", "8.8.4.4", "208.67.222.222"],# The profile_support option is used to detect if an external router can be
# configured via the dashboard. When using specific plugins the
# profile_support can be turned on if needed.
'profile_support': None,
#'profile_support': 'cisco',# Set which provider network types are supported. Only the network types
# in this list will be available to choose from when creating a network.
# Network types include local, flat, vlan, gre, vxlan and geneve.
# 'supported_provider_types': ['*'],# You can configure available segmentation ID range per network type
# in your deployment.
# 'segmentation_id_range': {
#     'vlan': [1024, 2048],
#     'vxlan': [4094, 65536],
# },# You can define additional provider network types here.
# 'extra_provider_types': {
#     'awesome_type': {
#         'display_name': 'Awesome New Type',
#         'require_physical_network': False,
#         'require_segmentation_id': True,
#     }
# },# Set which VNIC types are supported for port binding. Only the VNIC
# types in this list will be available to choose from when creating a
# port.
# VNIC types include 'normal', 'macvtap' and 'direct'.
# Set to empty list or None to disable VNIC type selection.
'supported_vnic_types': ['*'],

}

The OPENSTACK_HEAT_STACK settings can be used to disable password

field required while launching the stack.

OPENSTACK_HEAT_STACK = {
‘enable_user_pass’: True,
}

The OPENSTACK_IMAGE_BACKEND settings can be used to customize features

in the OpenStack Dashboard related to the Image service, such as the list

of supported image formats.

#OPENSTACK_IMAGE_BACKEND = {

‘image_formats’: [

(’’, _(‘Select format’)),

(‘aki’, _(‘AKI - Amazon Kernel Image’)),

(‘ami’, _(‘AMI - Amazon Machine Image’)),

(‘ari’, _(‘ARI - Amazon Ramdisk Image’)),

(‘docker’, _(‘Docker’)),

(‘iso’, _(‘ISO - Optical Disk Image’)),

(‘ova’, _(‘OVA - Open Virtual Appliance’)),

(‘qcow2’, _(‘QCOW2 - QEMU Emulator’)),

(‘raw’, _(‘Raw’)),

(‘vdi’, _(‘VDI - Virtual Disk Image’)),

(‘vhd’, _(‘VHD - Virtual Hard Disk’)),

(‘vmdk’, _(‘VMDK - Virtual Machine Disk’)),

],

#}

The IMAGE_CUSTOM_PROPERTY_TITLES settings is used to customize the titles for

image custom property attributes that appear on image detail pages.

IMAGE_CUSTOM_PROPERTY_TITLES = {
“architecture”: _(“Architecture”),
“kernel_id”: _(“Kernel ID”),
“ramdisk_id”: _(“Ramdisk ID”),
“image_state”: _(“Euca2ools state”),
“project_id”: _(“Project ID”),
“image_type”: _(“Image Type”),
}

The IMAGE_RESERVED_CUSTOM_PROPERTIES setting is used to specify which image

custom properties should not be displayed in the Image Custom Properties

table.

IMAGE_RESERVED_CUSTOM_PROPERTIES = []

Set to ‘legacy’ or ‘direct’ to allow users to upload images to glance via

Horizon server. When enabled, a file form field will appear on the create

image form. If set to ‘off’, there will be no file form field on the create

image form. See documentation for deployment considerations.

#HORIZON_IMAGES_UPLOAD_MODE = ‘legacy’

Allow a location to be set when creating or updating Glance images.

If using Glance V2, this value should be False unless the Glance

configuration and policies allow setting locations.

#IMAGES_ALLOW_LOCATION = False

OPENSTACK_ENDPOINT_TYPE specifies the endpoint type to use for the endpoints

in the Keystone service catalog. Use this setting when Horizon is running

external to the OpenStack environment. The default is ‘publicURL’.

#OPENSTACK_ENDPOINT_TYPE = “publicURL”

SECONDARY_ENDPOINT_TYPE specifies the fallback endpoint type to use in the

case that OPENSTACK_ENDPOINT_TYPE is not present in the endpoints

in the Keystone service catalog. Use this setting when Horizon is running

external to the OpenStack environment. The default is None. This

value should differ from OPENSTACK_ENDPOINT_TYPE if used.

#SECONDARY_ENDPOINT_TYPE = None

The number of objects (Swift containers/objects or images) to display

on a single page before providing a paging element (a “more” link)

to paginate results.

API_RESULT_LIMIT = 1000
API_RESULT_PAGE_SIZE = 20

The size of chunk in bytes for downloading objects from Swift

SWIFT_FILE_TRANSFER_CHUNK_SIZE = 512 * 1024

The default number of lines displayed for instance console log.

INSTANCE_LOG_LENGTH = 35

Specify a maximum number of items to display in a dropdown.

DROPDOWN_MAX_ITEMS = 30

The timezone of the server. This should correspond with the timezone

of your entire OpenStack installation, and hopefully be in UTC.

TIME_ZONE = “UTC”

When launching an instance, the menu of available flavors is

sorted by RAM usage, ascending. If you would like a different sort order,

you can provide another flavor attribute as sorting key. Alternatively, you

can provide a custom callback method to use for sorting. You can also provide

a flag for reverse sort. For more info, see

http://docs.python.org/2/library/functions.html#sorted

#CREATE_INSTANCE_FLAVOR_SORT = {

‘key’: ‘name’,

# or

‘key’: my_awesome_callback_method,

‘reverse’: False,

#}

Set this to True to display an ‘Admin Password’ field on the Change Password

form to verify that it is indeed the admin logged-in who wants to change

the password.

#ENFORCE_PASSWORD_CHECK = False

Modules that provide /auth routes that can be used to handle different types

of user authentication. Add auth plugins that require extra route handling to

this list.

#AUTHENTICATION_URLS = [

‘openstack_auth.urls’,

#]

The Horizon Policy Enforcement engine uses these values to load per service

policy rule files. The content of these files should match the files the

OpenStack services are using to determine role based access control in the

target installation.

Path to directory containing policy.json files

POLICY_FILES_PATH = ‘/etc/openstack-dashboard’

Map of local copy of service policy files.

Please insure that your identity policy file matches the one being used on

your keystone servers. There is an alternate policy file that may be used

in the Keystone v3 multi-domain case, policy.v3cloudsample.json.

This file is not included in the Horizon repository by default but can be

found at

http://git.openstack.org/cgit/openstack/keystone/tree/etc/ \

policy.v3cloudsample.json

Having matching policy files on the Horizon and Keystone servers is essential

for normal operation. This holds true for all services and their policy files.

#POLICY_FILES = {

‘identity’: ‘keystone_policy.json’,

‘compute’: ‘nova_policy.json’,

‘volume’: ‘cinder_policy.json’,

‘image’: ‘glance_policy.json’,

‘orchestration’: ‘heat_policy.json’,

‘network’: ‘neutron_policy.json’,

#}

TODO: (david-lyle) remove when plugins support adding settings.

Note: Only used when trove-dashboard plugin is configured to be used by

Horizon.

Trove user and database extension support. By default support for

creating users and databases on database instances is turned on.

To disable these extensions set the permission here to something

unusable such as ["!"].

#TROVE_ADD_USER_PERMS = []
#TROVE_ADD_DATABASE_PERMS = []

Change this patch to the appropriate list of tuples containing

a key, label and static directory containing two files:

_variables.scss and _styles.scss

#AVAILABLE_THEMES = [

(‘default’, ‘Default’, ‘themes/default’),

(‘material’, ‘Material’, ‘themes/material’),

#]

LOGGING = {
‘version’: 1,
# When set to True this will disable all logging except
# for loggers specified in this configuration dictionary. Note that
# if nothing is specified here and disable_existing_loggers is True,
# django.db.backends will still log unless it is disabled explicitly.
‘disable_existing_loggers’: False,
‘formatters’: {
‘operation’: {
# The format of “%(message)s” is defined by
# OPERATION_LOG_OPTIONS[‘format’]
‘format’: ‘%(asctime)s %(message)s’
},
},
‘handlers’: {
‘null’: {
‘level’: ‘DEBUG’,
‘class’: ‘logging.NullHandler’,
},
‘console’: {
# Set the level to “DEBUG” for verbose output logging.
‘level’: ‘INFO’,
‘class’: ‘logging.StreamHandler’,
},
‘operation’: {
‘level’: ‘INFO’,
‘class’: ‘logging.StreamHandler’,
‘formatter’: ‘operation’,
},
},
‘loggers’: {
# Logging from django.db.backends is VERY verbose, send to null
# by default.
‘django.db.backends’: {
‘handlers’: [‘null’],
‘propagate’: False,
},
‘requests’: {
‘handlers’: [‘null’],
‘propagate’: False,
},
‘horizon’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘horizon.operation_log’: {
‘handlers’: [‘operation’],
‘level’: ‘INFO’,
‘propagate’: False,
},
‘openstack_dashboard’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘novaclient’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘cinderclient’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘keystoneclient’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘glanceclient’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘neutronclient’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘heatclient’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘swiftclient’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘openstack_auth’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘nose.plugins.manager’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘django’: {
‘handlers’: [‘console’],
‘level’: ‘DEBUG’,
‘propagate’: False,
},
‘iso8601’: {
‘handlers’: [‘null’],
‘propagate’: False,
},
‘scss’: {
‘handlers’: [‘null’],
‘propagate’: False,
},
},
}

‘direction’ should not be specified for all_tcp/udp/icmp.

It is specified in the form.

SECURITY_GROUP_RULES = {
‘all_tcp’: {
‘name’: _(‘All TCP’),
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘1’,
‘to_port’: ‘65535’,
},
‘all_udp’: {
‘name’: _(‘All UDP’),
‘ip_protocol’: ‘udp’,
‘from_port’: ‘1’,
‘to_port’: ‘65535’,
},
‘all_icmp’: {
‘name’: _(‘All ICMP’),
‘ip_protocol’: ‘icmp’,
‘from_port’: ‘-1’,
‘to_port’: ‘-1’,
},
‘ssh’: {
‘name’: ‘SSH’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘22’,
‘to_port’: ‘22’,
},
‘smtp’: {
‘name’: ‘SMTP’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘25’,
‘to_port’: ‘25’,
},
‘dns’: {
‘name’: ‘DNS’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘53’,
‘to_port’: ‘53’,
},
‘http’: {
‘name’: ‘HTTP’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘80’,
‘to_port’: ‘80’,
},
‘pop3’: {
‘name’: ‘POP3’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘110’,
‘to_port’: ‘110’,
},
‘imap’: {
‘name’: ‘IMAP’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘143’,
‘to_port’: ‘143’,
},
‘ldap’: {
‘name’: ‘LDAP’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘389’,
‘to_port’: ‘389’,
},
‘https’: {
‘name’: ‘HTTPS’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘443’,
‘to_port’: ‘443’,
},
‘smtps’: {
‘name’: ‘SMTPS’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘465’,
‘to_port’: ‘465’,
},
‘imaps’: {
‘name’: ‘IMAPS’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘993’,
‘to_port’: ‘993’,
},
‘pop3s’: {
‘name’: ‘POP3S’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘995’,
‘to_port’: ‘995’,
},
‘ms_sql’: {
‘name’: ‘MS SQL’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘1433’,
‘to_port’: ‘1433’,
},
‘mysql’: {
‘name’: ‘MYSQL’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘3306’,
‘to_port’: ‘3306’,
},
‘rdp’: {
‘name’: ‘RDP’,
‘ip_protocol’: ‘tcp’,
‘from_port’: ‘3389’,
‘to_port’: ‘3389’,
},
}

Deprecation Notice:

The setting FLAVOR_EXTRA_KEYS has been deprecated.

Please load extra spec metadata into the Glance Metadata Definition Catalog.

The sample quota definitions can be found in:

<glance_source>/etc/metadefs/compute-quota.json

The metadata definition catalog supports CLI and API:

$glance --os-image-api-version 2 help md-namespace-import

$glance-manage db_load_metadefs <directory_with_definition_files>

See Metadata Definitions on: http://docs.openstack.org/developer/glance/

TODO: (david-lyle) remove when plugins support settings natively

Note: This is only used when the Sahara plugin is configured and enabled

for use in Horizon.

Indicate to the Sahara data processing service whether or not

automatic floating IP allocation is in effect. If it is not

in effect, the user will be prompted to choose a floating IP

pool for use in their cluster. False by default. You would want

to set this to True if you were running Nova Networking with

auto_assign_floating_ip = True.

#SAHARA_AUTO_IP_ALLOCATION_ENABLED = False

The hash algorithm to use for authentication tokens. This must

match the hash algorithm that the identity server and the

auth_token middleware are using. Allowed values are the

algorithms supported by Python’s hashlib library.

#OPENSTACK_TOKEN_HASH_ALGORITHM = ‘md5’

AngularJS requires some settings to be made available to

the client side. Some settings are required by in-tree / built-in horizon

features. These settings must be added to REST_API_REQUIRED_SETTINGS in the

form of [‘SETTING_1’,‘SETTING_2’], etc.

You may remove settings from this list for security purposes, but do so at

the risk of breaking a built-in horizon feature. These settings are required

for horizon to function properly. Only remove them if you know what you

are doing. These settings may in the future be moved to be defined within

the enabled panel configuration.

You should not add settings to this list for out of tree extensions.

See: https://wiki.openstack.org/wiki/Horizon/RESTAPI

REST_API_REQUIRED_SETTINGS = [‘OPENSTACK_HYPERVISOR_FEATURES’,
‘LAUNCH_INSTANCE_DEFAULTS’,
‘OPENSTACK_IMAGE_FORMATS’,
‘OPENSTACK_KEYSTONE_DEFAULT_DOMAIN’]

Additional settings can be made available to the client side for

extensibility by specifying them in REST_API_ADDITIONAL_SETTINGS

!! Please use extreme caution as the settings are transferred via HTTP/S

and are not encrypted on the browser. This is an experimental API and

may be deprecated in the future without notice.

#REST_API_ADDITIONAL_SETTINGS = []

DISALLOW_IFRAME_EMBED can be used to prevent Horizon from being embedded

within an iframe. Legacy browsers are still vulnerable to a Cross-Frame

Scripting (XFS) vulnerability, so this option allows extra security hardening

where iframes are not used in deployment. Default setting is True.

For more information see:

http://tinyurl.com/anticlickjack

#DISALLOW_IFRAME_EMBED = True

Help URL can be made available for the client. To provide a help URL, edit the

following attribute to the URL of your choice.

#HORIZON_CONFIG[“help_url”] = “http://openstack.mycompany.org”

Settings for OperationLogMiddleware

OPERATION_LOG_ENABLED is flag to use the function to log an operation on

Horizon.

mask_targets is arrangement for appointing a target to mask.

method_targets is arrangement of HTTP method to output log.

format is the log contents.

#OPERATION_LOG_ENABLED = False
#OPERATION_LOG_OPTIONS = {

‘mask_fields’: [‘password’],

‘target_methods’: [‘POST’],

‘format’: ("[%(domain_name)s] [%(domain_id)s] [%(project_name)s]"

" [%(project_id)s] [%(user_name)s] [%(user_id)s] [%(request_scheme)s]"

" [%(referer_url)s] [%(request_url)s] [%(message)s] [%(method)s]"

" [%(http_status)s] [%(param)s]"),

#}

The default date range in the Overview panel meters - either minus N

days (if the value is integer N), or from the beginning of the current month

until today (if set to None). This setting should be used to limit the amount

of data fetched by default when rendering the Overview panel.

#OVERVIEW_DAYS_RANGE = 1

To allow operators to require users provide a search criteria first

before loading any data into the views, set the following dict

attributes to True in each one of the panels you want to enable this feature.

Follow the convention .

#FILTER_DATA_FIRST = {

‘admin.instances’: False,

‘admin.images’: False,

‘admin.networks’: False,

‘admin.routers’: False,

‘admin.volumes’: False,

‘identity.users’: False,

‘identity.projects’: False,

‘identity.groups’: False,

‘identity.roles’: False

#}

Dict used to restrict user private subnet cidr range.

An empty list means that user input will not be restricted

for a corresponding IP version. By default, there is

no restriction for IPv4 or IPv6. To restrict

user private subnet cidr range set ALLOWED_PRIVATE_SUBNET_CIDR

to something like

#ALLOWED_PRIVATE_SUBNET_CIDR = {

‘ipv4’: [‘10.0.0.0/8’, ‘192.168.0.0/16’],

‘ipv6’: [‘fc00::/7’]

#}
ALLOWED_PRIVATE_SUBNET_CIDR = {‘ipv4’: [], ‘ipv6’: []}

Project and user can have any attributes by keystone v3 mechanism.

This settings can treat these attributes on Horizon.

It means, when you show Create/Update modal, attribute below is

shown and you can specify any value.

If you’d like to display these extra data in project or user index table,

Keystone v3 allows you to add extra properties to Project and Users.

Horizon’s customization (http://docs.openstack.org/developer/horizon/topics/customizing.html#horizon-customization-module-overrides)

allows you to display this extra information in the Create/Update modal and

the corresponding tables.

#PROJECT_TABLE_EXTRA_INFO = {

‘phone_num’: _(‘Phone Number’),

#}
#USER_TABLE_EXTRA_INFO = {

‘phone_num’: _(‘Phone Number’),

#}

查看全文
如若内容造成侵权/违法违规/事实不符,请联系编程学习网邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!

相关文章

  1. 论韩国无游戏!

    在csdn上看到一篇文章,说韩国网络游戏占中国市场份额的不到20%了我来谈谈我的看法:韩国垃圾游戏早就该失败了,风格单一,内容单调,运营情况巨烂,今天才知道不是国内代理的问题,是韩国公司自己的经营理念有问题,这样的游戏能不失败么,现在这个游戏横飞的年代,就韩国游戏…...

    2024/4/20 2:34:18
  2. MSMQ 安装问题的解决过程

    在xp上安装msmq时,出现“ 无法启动msmetriggers服务0x42C”的错误。 解决方法 msdtc是运行在LocalSystem账号下,可以通过以下命令解决:net stop msdtc msdtc -uninstall msdtc -install net start msdtc ------------------------------…...

    2024/5/4 16:23:28
  3. 移动级处理芯片岁末盘点

    时间过得真快,不知不觉间又到了年关,这就说明一年一度做盘点汇总的时候也要到了。作为即将踏入这个科技行业快有三个年头的媒体人,笔者也这在这段时间内跟随新兴的移动互联网市场一起成长着,同时也看尽了这三年来行业里无情的变迁。感叹身在同一个行业里厂商们,处在不同的…...

    2024/4/20 17:06:33
  4. 分布式事务 问题总结

    最近几天调试了几次分布式事务问题,做了以下总结。 关于分布式事务的介绍建议在Google查看或直接查看MSDN文档。 出现分布式事务不可用一般排错过程如下: 1,MSDTC配置,这个比较大路化,一般使用都了解相关内容,出入站设置,权限校验设置等内容。 2,网络,端口是否可用。 …...

    2024/4/26 0:11:42
  5. Linux 系统快速搭建Web项目教程(一)

    这里讲的是在新购买的云服务器下快速部署Java-Web项目的整体流程,当然也包括物理服务器,都是一样的玩法,话不多说,直接讲干货。。。。【前提】准备好Linux-CentOS 7 版本系统的服务器,提前开放好3-4个端口备用(8080/8081/8888/3306) 【必备工具】Xshell(连接远程服务器…...

    2024/4/20 17:06:30
  6. 只要你遵循W3C标准来编写HTML,你的网页将永远能在所有浏览器上显示出来

    关于HTML,还有什么要了解的? 你可以以多种不同的方式来编写HTML;同时,浏览器也可以以多种不同的方式来理解HTML。你可以认为HTML有很多种方言。这就是为什么某些网站会在不同的浏览器上显示出不同效果的原因。 为了解决这一问题,HTML发明人Tim Berners-Lee先生创办了万维网…...

    2024/4/20 6:36:49
  7. 使用VB求解华容道问题

    1、问题的提出 1.1“华容道”简介 “华容道”是一种中国古代的智力游戏玩具,在一个宽为4,长为5的矩形框中,有10个棋子,包括一个曹操,五虎上将,四个小卒,要求在各个棋子不重叠的情况下进行移动,最有将曹操从棋盘上方移动到下边中央为成功。由于五员大将可以横放也可以竖…...

    2024/4/20 5:52:20
  8. Windows Server 2012 RemoteApp体验-通过RD Web修改用户密码

    Windows Server 2012 RemoteApp体验-通过RD Web修改用户密码Windows Server 2012 RemoteApp体验-通过RD Web修改用户密码在生产环境进行应用虚拟化部署时,终端用户修改密码是很正常的事件,从早期版到Windows 2008 R2,远程桌面用户修改密码一般有以下4种方法:1、设置用户下次…...

    2024/4/20 17:06:29
  9. xmlns xsi http //www w3 org/2001/XMLSchema-instance xsi sch

    http://topic.csdn.net/u/20110117/01/3e3cc322-8f8e-4c2b-8cbb-768bf7319c59.htmlxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"中xsi的意思是 :本xml文件中要用到某些来自xsi代表的“http://www.w3.org/2001/XMLSchema-instance”这个命名空间的元素 比…...

    2024/4/20 17:06:27
  10. 域用户登录:域控制器故障找不到域

    XP系统的客户端登录得时候总提示域控制器故障,找不到域. 升级操作:主域控制器和备份域控制器中的旧系统(windows 2003 server 标准版)上的所有域账号和配置成功导到新购的两台服务器的新系统中(windows 2008R2 标准版)。 出现问题:XP系统的客户端登录得时候总提示域控制…...

    2024/4/26 15:26:07
  11. Ubuntu下使用w3m命令行模式浏览网页

    w3m是一个基于文本的网页浏览器,支持多种操作系统,在命令行终端可以很好的支持中文。即使在没有鼠标支持的情况下也可以检查网页的输出。我们一般用Ubuntu的X Windows来看图形界面的东西,有没有想过在命令行模式下浏览网页呢?如果有就快去试试w3m命令吧!最简单的浏览网的方…...

    2024/4/21 11:25:28
  12. 20200220–靶场记录,web渗透+内网渗透完整版

    0x00 前言疫情期间,在家无聊,闲的腚疼,就开始打靶。为了此次打靶,23g的文件,特地开了百度云会员来下载,17号晚上下载,18号一觉醒来发现下载完毕,老衲的10块钱会员钱还是没白花,于是就开始了打靶之旅,下面将记录此次打靶的所有细节和所遇到的问题。大佬笑笑经过就好,…...

    2024/4/21 11:25:26
  13. 组件服务 我的电脑 不可用解决办法

    在“服务”里找到这三个服务,都启动就行了 Distributed Transaction Coordinator Remote Procedure Call (RPC) Security Accounts Managerdtc的启动经常会遇到问题,有以下解决办法: 1.直接运行msdtc -resetlog 2. A.在命令行下运行 msdtc -uninstall,删除了 msdtc(Distr…...

    2024/4/21 11:25:25
  14. 游戏的本质[转自网易]

    本文摘要: 游戏的本质:生命体谋求自足的目的的活动,是生命体获取负熵的一种方式。 游戏性:游戏的自足性的可实现性(包括可探索性和竞争性),即游戏所包含的负熵的相对量。游戏性【某种游戏所必须具备的性质】=可探索性+可竞争性 可探索性:游戏的规律性和变异性的乘积,…...

    2024/4/21 11:25:24
  15. kali2020安装w3af时,无法定位软件包python-pip python-webkit的解决办法

    w3af在kali2020下真心不好安装一路坑坑拌伴正常下载w3af,按要求解压在/root下安装NPM包管理工具apt install npm libyaml-dev libsqlite3-dev补全python库环境apt install python-dev build-essential libssl-dev libffi-dev libxml2-dev libxslt1-dev zlib1g-dev修改配置文件…...

    2024/5/4 11:54:39
  16. opencanary_web 使用记录

    Py发送邮件测试脚本 #!/usr/bin/python # -*- coding: UTF-8 -*- import smtplib from email.mime.text import MIMEText from email.header import Headersender = username@163.net receivers = [123456@qq.com] # 接收邮件,可设置为你的QQ邮箱或者其他邮箱# 三个参数:第一…...

    2024/4/21 11:25:23
  17. 使用DTCPing工具解决MSDTC问题(新事务无法在指定的事务协调器中登记)

    Microsoft的分布式服务支持团队每天都会帮助客户排除一些最常见的分布式事务错误,这些错误是MSRPC(Microsoft远程过程调用)通信在网络中因某些安全\防火墙设置而失败的直接结果。在应用程序层(如SQL)上,这些是将被冒泡的常见错误消息。服务器:消息7391,级别16,状态1,…...

    2024/4/30 19:31:36
  18. 阿P正传二

    作为新兴的互联网公司,加班是公司必不可少的文化。当然,公司总会换一个好听点的名字来形容加班,比如说弹性工作制。如果你九点钟回去,六点到七点算晚饭时间,早上便可以十点钟到公司。所以基本上大部分人都会在公司待着,特别是老王技术部门的那些人,哪怕是没有事情做,哪…...

    2024/4/26 12:55:01
  19. ubuntu下python,w3af开发环境配置及工程搭建

    一.需要配置的工具 虚拟机,ubuntu12.04.4,w3af,eclipse,eclipse插件pydev 二.配置过程 1.虚拟机和ubuntu 我的虚拟机使用的virtualbox。VMware应该也可以。虚拟机没什么特别的。在虚拟机分配系统内存的时候尽量分的大一些,否则会比较卡,我分的1G的内存。ubuntu的配置只要…...

    2024/5/2 14:18:08
  20. web项目部署到服务器遇到的问题(持续更新~)

    web项目部署到Linux服务器遇到的问题 (内含war包部署产生的问题) 部署项目为:旅游网(可下载源码)一 Linux部署环境问题 二 war包错误修改Linux部署环境问题 整个Linux服务器部署参照博客https://blog.csdn.net/qq_41635167/article/details/81096075 Linux 命令 systemctl s…...

    2024/4/21 11:25:18

最新文章

  1. 将自己的程序打包成Docker镜像映射公网访问

    背景 Docker是现在主流的容器技术&#xff0c;使用容器部署可以忽略应用依赖环境&#xff0c;我们可以很便捷地部署、更新应用。我们在联调开发过程中&#xff0c;可以借助DockerFrp这一方案实现远程联调。 Dockerfile编写 我现在在/opt/english-learn目录下准备好了我的程序…...

    2024/5/4 20:04:18
  2. 梯度消失和梯度爆炸的一些处理方法

    在这里是记录一下梯度消失或梯度爆炸的一些处理技巧。全当学习总结了如有错误还请留言&#xff0c;在此感激不尽。 权重和梯度的更新公式如下&#xff1a; w w − η ⋅ ∇ w w w - \eta \cdot \nabla w ww−η⋅∇w 个人通俗的理解梯度消失就是网络模型在反向求导的时候出…...

    2024/3/20 10:50:27
  3. LeetCode 热题 100 题解(二):双指针部分(2)| 滑动窗口部分(1)

    题目四&#xff1a;接雨水&#xff08;No. 43&#xff09; 题目链接&#xff1a;https://leetcode.cn/problems/trapping-rain-water/description/?envTypestudy-plan-v2&envIdtop-100-liked 难度&#xff1a;困难 给定 n 个非负整数表示每个宽度为 1 的柱子的高度图&am…...

    2024/5/3 10:29:41
  4. java的gradle,maven工程中使用selenium

    一、下载selenium库 &#xff08;1&#xff09;gradle工程 工程中会有一个build.gradle.kts的文件&#xff0c;这个文件可以定制 Gradle 的行为 在文件中添加下面代码&#xff0c;然后sync // implementation ("org.seleniumhq.selenium:selenium-java:4.19.1") …...

    2024/5/3 23:47:09
  5. 基于ArrayList实现简单洗牌

    前言 在之前的那篇文章中&#xff0c;我们已经认识了顺序表—>http://t.csdnimg.cn/2I3fE 基于此&#xff0c;便好理解ArrayList和后面的洗牌游戏了。 什么是ArrayList? ArrayList底层是一段连续的空间&#xff0c;并且可以动态扩容&#xff0c;是一个动态类型的顺序表&…...

    2024/5/4 10:31:32
  6. 【外汇早评】美通胀数据走低,美元调整

    原标题:【外汇早评】美通胀数据走低,美元调整昨日美国方面公布了新一期的核心PCE物价指数数据,同比增长1.6%,低于前值和预期值的1.7%,距离美联储的通胀目标2%继续走低,通胀压力较低,且此前美国一季度GDP初值中的消费部分下滑明显,因此市场对美联储后续更可能降息的政策…...

    2024/5/1 17:30:59
  7. 【原油贵金属周评】原油多头拥挤,价格调整

    原标题:【原油贵金属周评】原油多头拥挤,价格调整本周国际劳动节,我们喜迎四天假期,但是整个金融市场确实流动性充沛,大事频发,各个商品波动剧烈。美国方面,在本周四凌晨公布5月份的利率决议和新闻发布会,维持联邦基金利率在2.25%-2.50%不变,符合市场预期。同时美联储…...

    2024/5/2 16:16:39
  8. 【外汇周评】靓丽非农不及疲软通胀影响

    原标题:【外汇周评】靓丽非农不及疲软通胀影响在刚结束的周五,美国方面公布了新一期的非农就业数据,大幅好于前值和预期,新增就业重新回到20万以上。具体数据: 美国4月非农就业人口变动 26.3万人,预期 19万人,前值 19.6万人。 美国4月失业率 3.6%,预期 3.8%,前值 3…...

    2024/4/29 2:29:43
  9. 【原油贵金属早评】库存继续增加,油价收跌

    原标题:【原油贵金属早评】库存继续增加,油价收跌周三清晨公布美国当周API原油库存数据,上周原油库存增加281万桶至4.692亿桶,增幅超过预期的74.4万桶。且有消息人士称,沙特阿美据悉将于6月向亚洲炼油厂额外出售更多原油,印度炼油商预计将每日获得至多20万桶的额外原油供…...

    2024/5/3 23:10:03
  10. 【外汇早评】日本央行会议纪要不改日元强势

    原标题:【外汇早评】日本央行会议纪要不改日元强势近两日日元大幅走强与近期市场风险情绪上升,避险资金回流日元有关,也与前一段时间的美日贸易谈判给日本缓冲期,日本方面对汇率问题也避免继续贬值有关。虽然今日早间日本央行公布的利率会议纪要仍然是支持宽松政策,但这符…...

    2024/4/27 17:58:04
  11. 【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响

    原标题:【原油贵金属早评】欧佩克稳定市场,填补伊朗问题的影响近日伊朗局势升温,导致市场担忧影响原油供给,油价试图反弹。此时OPEC表态稳定市场。据消息人士透露,沙特6月石油出口料将低于700万桶/日,沙特已经收到石油消费国提出的6月份扩大出口的“适度要求”,沙特将满…...

    2024/4/27 14:22:49
  12. 【外汇早评】美欲与伊朗重谈协议

    原标题:【外汇早评】美欲与伊朗重谈协议美国对伊朗的制裁遭到伊朗的抗议,昨日伊朗方面提出将部分退出伊核协议。而此行为又遭到欧洲方面对伊朗的谴责和警告,伊朗外长昨日回应称,欧洲国家履行它们的义务,伊核协议就能保证存续。据传闻伊朗的导弹已经对准了以色列和美国的航…...

    2024/4/28 1:28:33
  13. 【原油贵金属早评】波动率飙升,市场情绪动荡

    原标题:【原油贵金属早评】波动率飙升,市场情绪动荡因中美贸易谈判不安情绪影响,金融市场各资产品种出现明显的波动。随着美国与中方开启第十一轮谈判之际,美国按照既定计划向中国2000亿商品征收25%的关税,市场情绪有所平复,已经开始接受这一事实。虽然波动率-恐慌指数VI…...

    2024/4/30 9:43:09
  14. 【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试

    原标题:【原油贵金属周评】伊朗局势升温,黄金多头跃跃欲试美国和伊朗的局势继续升温,市场风险情绪上升,避险黄金有向上突破阻力的迹象。原油方面稍显平稳,近期美国和OPEC加大供给及市场需求回落的影响,伊朗局势并未推升油价走强。近期中美贸易谈判摩擦再度升级,美国对中…...

    2024/4/27 17:59:30
  15. 【原油贵金属早评】市场情绪继续恶化,黄金上破

    原标题:【原油贵金属早评】市场情绪继续恶化,黄金上破周初中国针对于美国加征关税的进行的反制措施引发市场情绪的大幅波动,人民币汇率出现大幅的贬值动能,金融市场受到非常明显的冲击。尤其是波动率起来之后,对于股市的表现尤其不安。隔夜美国股市出现明显的下行走势,这…...

    2024/5/4 18:20:48
  16. 【外汇早评】美伊僵持,风险情绪继续升温

    原标题:【外汇早评】美伊僵持,风险情绪继续升温昨日沙特两艘油轮再次发生爆炸事件,导致波斯湾局势进一步恶化,市场担忧美伊可能会出现摩擦生火,避险品种获得支撑,黄金和日元大幅走强。美指受中美贸易问题影响而在低位震荡。继5月12日,四艘商船在阿联酋领海附近的阿曼湾、…...

    2024/4/28 1:34:08
  17. 【原油贵金属早评】贸易冲突导致需求低迷,油价弱势

    原标题:【原油贵金属早评】贸易冲突导致需求低迷,油价弱势近日虽然伊朗局势升温,中东地区几起油船被袭击事件影响,但油价并未走高,而是出于调整结构中。由于市场预期局势失控的可能性较低,而中美贸易问题导致的全球经济衰退风险更大,需求会持续低迷,因此油价调整压力较…...

    2024/4/26 19:03:37
  18. 氧生福地 玩美北湖(上)——为时光守候两千年

    原标题:氧生福地 玩美北湖(上)——为时光守候两千年一次说走就走的旅行,只有一张高铁票的距离~ 所以,湖南郴州,我来了~ 从广州南站出发,一个半小时就到达郴州西站了。在动车上,同时改票的南风兄和我居然被分到了一个车厢,所以一路非常愉快地聊了过来。 挺好,最起…...

    2024/4/29 20:46:55
  19. 氧生福地 玩美北湖(中)——永春梯田里的美与鲜

    原标题:氧生福地 玩美北湖(中)——永春梯田里的美与鲜一觉醒来,因为大家太爱“美”照,在柳毅山庄去寻找龙女而错过了早餐时间。近十点,向导坏坏还是带着饥肠辘辘的我们去吃郴州最富有盛名的“鱼头粉”。说这是“十二分推荐”,到郴州必吃的美食之一。 哇塞!那个味美香甜…...

    2024/4/30 22:21:04
  20. 氧生福地 玩美北湖(下)——奔跑吧骚年!

    原标题:氧生福地 玩美北湖(下)——奔跑吧骚年!让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 让我们红尘做伴 活得潇潇洒洒 策马奔腾共享人世繁华 对酒当歌唱出心中喜悦 轰轰烈烈把握青春年华 啊……啊……啊 两…...

    2024/5/1 4:32:01
  21. 扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!

    原标题:扒开伪装医用面膜,翻六倍价格宰客,小姐姐注意了!扒开伪装医用面膜,翻六倍价格宰客!当行业里的某一品项火爆了,就会有很多商家蹭热度,装逼忽悠,最近火爆朋友圈的医用面膜,被沾上了污点,到底怎么回事呢? “比普通面膜安全、效果好!痘痘、痘印、敏感肌都能用…...

    2024/5/4 2:59:34
  22. 「发现」铁皮石斛仙草之神奇功效用于医用面膜

    原标题:「发现」铁皮石斛仙草之神奇功效用于医用面膜丽彦妆铁皮石斛医用面膜|石斛多糖无菌修护补水贴19大优势: 1、铁皮石斛:自唐宋以来,一直被列为皇室贡品,铁皮石斛生于海拔1600米的悬崖峭壁之上,繁殖力差,产量极低,所以古代仅供皇室、贵族享用 2、铁皮石斛自古民间…...

    2024/4/28 5:48:52
  23. 丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者

    原标题:丽彦妆\医用面膜\冷敷贴轻奢医学护肤引导者【公司简介】 广州华彬企业隶属香港华彬集团有限公司,专注美业21年,其旗下品牌: 「圣茵美」私密荷尔蒙抗衰,产后修复 「圣仪轩」私密荷尔蒙抗衰,产后修复 「花茵莳」私密荷尔蒙抗衰,产后修复 「丽彦妆」专注医学护…...

    2024/4/30 9:42:22
  24. 广州械字号面膜生产厂家OEM/ODM4项须知!

    原标题:广州械字号面膜生产厂家OEM/ODM4项须知!广州械字号面膜生产厂家OEM/ODM流程及注意事项解读: 械字号医用面膜,其实在我国并没有严格的定义,通常我们说的医美面膜指的应该是一种「医用敷料」,也就是说,医用面膜其实算作「医疗器械」的一种,又称「医用冷敷贴」。 …...

    2024/5/2 9:07:46
  25. 械字号医用眼膜缓解用眼过度到底有无作用?

    原标题:械字号医用眼膜缓解用眼过度到底有无作用?医用眼膜/械字号眼膜/医用冷敷眼贴 凝胶层为亲水高分子材料,含70%以上的水分。体表皮肤温度传导到本产品的凝胶层,热量被凝胶内水分子吸收,通过水分的蒸发带走大量的热量,可迅速地降低体表皮肤局部温度,减轻局部皮肤的灼…...

    2024/4/30 9:42:49
  26. 配置失败还原请勿关闭计算机,电脑开机屏幕上面显示,配置失败还原更改 请勿关闭计算机 开不了机 这个问题怎么办...

    解析如下&#xff1a;1、长按电脑电源键直至关机&#xff0c;然后再按一次电源健重启电脑&#xff0c;按F8健进入安全模式2、安全模式下进入Windows系统桌面后&#xff0c;按住“winR”打开运行窗口&#xff0c;输入“services.msc”打开服务设置3、在服务界面&#xff0c;选中…...

    2022/11/19 21:17:18
  27. 错误使用 reshape要执行 RESHAPE,请勿更改元素数目。

    %读入6幅图像&#xff08;每一幅图像的大小是564*564&#xff09; f1 imread(WashingtonDC_Band1_564.tif); subplot(3,2,1),imshow(f1); f2 imread(WashingtonDC_Band2_564.tif); subplot(3,2,2),imshow(f2); f3 imread(WashingtonDC_Band3_564.tif); subplot(3,2,3),imsho…...

    2022/11/19 21:17:16
  28. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机...

    win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”问题的解决方法在win7系统关机时如果有升级系统的或者其他需要会直接进入一个 等待界面&#xff0c;在等待界面中我们需要等待操作结束才能关机&#xff0c;虽然这比较麻烦&#xff0c;但是对系统进行配置和升级…...

    2022/11/19 21:17:15
  29. 台式电脑显示配置100%请勿关闭计算机,“准备配置windows 请勿关闭计算机”的解决方法...

    有不少用户在重装Win7系统或更新系统后会遇到“准备配置windows&#xff0c;请勿关闭计算机”的提示&#xff0c;要过很久才能进入系统&#xff0c;有的用户甚至几个小时也无法进入&#xff0c;下面就教大家这个问题的解决方法。第一种方法&#xff1a;我们首先在左下角的“开始…...

    2022/11/19 21:17:14
  30. win7 正在配置 请勿关闭计算机,怎么办Win7开机显示正在配置Windows Update请勿关机...

    置信有很多用户都跟小编一样遇到过这样的问题&#xff0c;电脑时发现开机屏幕显现“正在配置Windows Update&#xff0c;请勿关机”(如下图所示)&#xff0c;而且还需求等大约5分钟才干进入系统。这是怎样回事呢&#xff1f;一切都是正常操作的&#xff0c;为什么开时机呈现“正…...

    2022/11/19 21:17:13
  31. 准备配置windows 请勿关闭计算机 蓝屏,Win7开机总是出现提示“配置Windows请勿关机”...

    Win7系统开机启动时总是出现“配置Windows请勿关机”的提示&#xff0c;没过几秒后电脑自动重启&#xff0c;每次开机都这样无法进入系统&#xff0c;此时碰到这种现象的用户就可以使用以下5种方法解决问题。方法一&#xff1a;开机按下F8&#xff0c;在出现的Windows高级启动选…...

    2022/11/19 21:17:12
  32. 准备windows请勿关闭计算机要多久,windows10系统提示正在准备windows请勿关闭计算机怎么办...

    有不少windows10系统用户反映说碰到这样一个情况&#xff0c;就是电脑提示正在准备windows请勿关闭计算机&#xff0c;碰到这样的问题该怎么解决呢&#xff0c;现在小编就给大家分享一下windows10系统提示正在准备windows请勿关闭计算机的具体第一种方法&#xff1a;1、2、依次…...

    2022/11/19 21:17:11
  33. 配置 已完成 请勿关闭计算机,win7系统关机提示“配置Windows Update已完成30%请勿关闭计算机”的解决方法...

    今天和大家分享一下win7系统重装了Win7旗舰版系统后&#xff0c;每次关机的时候桌面上都会显示一个“配置Windows Update的界面&#xff0c;提示请勿关闭计算机”&#xff0c;每次停留好几分钟才能正常关机&#xff0c;导致什么情况引起的呢&#xff1f;出现配置Windows Update…...

    2022/11/19 21:17:10
  34. 电脑桌面一直是清理请关闭计算机,windows7一直卡在清理 请勿关闭计算机-win7清理请勿关机,win7配置更新35%不动...

    只能是等着&#xff0c;别无他法。说是卡着如果你看硬盘灯应该在读写。如果从 Win 10 无法正常回滚&#xff0c;只能是考虑备份数据后重装系统了。解决来方案一&#xff1a;管理员运行cmd&#xff1a;net stop WuAuServcd %windir%ren SoftwareDistribution SDoldnet start WuA…...

    2022/11/19 21:17:09
  35. 计算机配置更新不起,电脑提示“配置Windows Update请勿关闭计算机”怎么办?

    原标题&#xff1a;电脑提示“配置Windows Update请勿关闭计算机”怎么办&#xff1f;win7系统中在开机与关闭的时候总是显示“配置windows update请勿关闭计算机”相信有不少朋友都曾遇到过一次两次还能忍但经常遇到就叫人感到心烦了遇到这种问题怎么办呢&#xff1f;一般的方…...

    2022/11/19 21:17:08
  36. 计算机正在配置无法关机,关机提示 windows7 正在配置windows 请勿关闭计算机 ,然后等了一晚上也没有关掉。现在电脑无法正常关机...

    关机提示 windows7 正在配置windows 请勿关闭计算机 &#xff0c;然后等了一晚上也没有关掉。现在电脑无法正常关机以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;关机提示 windows7 正在配…...

    2022/11/19 21:17:05
  37. 钉钉提示请勿通过开发者调试模式_钉钉请勿通过开发者调试模式是真的吗好不好用...

    钉钉请勿通过开发者调试模式是真的吗好不好用 更新时间:2020-04-20 22:24:19 浏览次数:729次 区域: 南阳 > 卧龙 列举网提醒您:为保障您的权益,请不要提前支付任何费用! 虚拟位置外设器!!轨迹模拟&虚拟位置外设神器 专业用于:钉钉,外勤365,红圈通,企业微信和…...

    2022/11/19 21:17:05
  38. 配置失败还原请勿关闭计算机怎么办,win7系统出现“配置windows update失败 还原更改 请勿关闭计算机”,长时间没反应,无法进入系统的解决方案...

    前几天班里有位学生电脑(windows 7系统)出问题了&#xff0c;具体表现是开机时一直停留在“配置windows update失败 还原更改 请勿关闭计算机”这个界面&#xff0c;长时间没反应&#xff0c;无法进入系统。这个问题原来帮其他同学也解决过&#xff0c;网上搜了不少资料&#x…...

    2022/11/19 21:17:04
  39. 一个电脑无法关闭计算机你应该怎么办,电脑显示“清理请勿关闭计算机”怎么办?...

    本文为你提供了3个有效解决电脑显示“清理请勿关闭计算机”问题的方法&#xff0c;并在最后教给你1种保护系统安全的好方法&#xff0c;一起来看看&#xff01;电脑出现“清理请勿关闭计算机”在Windows 7(SP1)和Windows Server 2008 R2 SP1中&#xff0c;添加了1个新功能在“磁…...

    2022/11/19 21:17:03
  40. 请勿关闭计算机还原更改要多久,电脑显示:配置windows更新失败,正在还原更改,请勿关闭计算机怎么办...

    许多用户在长期不使用电脑的时候&#xff0c;开启电脑发现电脑显示&#xff1a;配置windows更新失败&#xff0c;正在还原更改&#xff0c;请勿关闭计算机。。.这要怎么办呢&#xff1f;下面小编就带着大家一起看看吧&#xff01;如果能够正常进入系统&#xff0c;建议您暂时移…...

    2022/11/19 21:17:02
  41. 还原更改请勿关闭计算机 要多久,配置windows update失败 还原更改 请勿关闭计算机,电脑开机后一直显示以...

    配置windows update失败 还原更改 请勿关闭计算机&#xff0c;电脑开机后一直显示以以下文字资料是由(历史新知网www.lishixinzhi.com)小编为大家搜集整理后发布的内容&#xff0c;让我们赶快一起来看一下吧&#xff01;配置windows update失败 还原更改 请勿关闭计算机&#x…...

    2022/11/19 21:17:01
  42. 电脑配置中请勿关闭计算机怎么办,准备配置windows请勿关闭计算机一直显示怎么办【图解】...

    不知道大家有没有遇到过这样的一个问题&#xff0c;就是我们的win7系统在关机的时候&#xff0c;总是喜欢显示“准备配置windows&#xff0c;请勿关机”这样的一个页面&#xff0c;没有什么大碍&#xff0c;但是如果一直等着的话就要两个小时甚至更久都关不了机&#xff0c;非常…...

    2022/11/19 21:17:00
  43. 正在准备配置请勿关闭计算机,正在准备配置windows请勿关闭计算机时间长了解决教程...

    当电脑出现正在准备配置windows请勿关闭计算机时&#xff0c;一般是您正对windows进行升级&#xff0c;但是这个要是长时间没有反应&#xff0c;我们不能再傻等下去了。可能是电脑出了别的问题了&#xff0c;来看看教程的说法。正在准备配置windows请勿关闭计算机时间长了方法一…...

    2022/11/19 21:16:59
  44. 配置失败还原请勿关闭计算机,配置Windows Update失败,还原更改请勿关闭计算机...

    我们使用电脑的过程中有时会遇到这种情况&#xff0c;当我们打开电脑之后&#xff0c;发现一直停留在一个界面&#xff1a;“配置Windows Update失败&#xff0c;还原更改请勿关闭计算机”&#xff0c;等了许久还是无法进入系统。如果我们遇到此类问题应该如何解决呢&#xff0…...

    2022/11/19 21:16:58
  45. 如何在iPhone上关闭“请勿打扰”

    Apple’s “Do Not Disturb While Driving” is a potentially lifesaving iPhone feature, but it doesn’t always turn on automatically at the appropriate time. For example, you might be a passenger in a moving car, but your iPhone may think you’re the one dri…...

    2022/11/19 21:16:57