肥宅钓鱼网
当前位置: 首页 钓鱼百科

openstack搭建教程(openstack平台搭建步骤)

时间:2023-06-12 作者: 小编 阅读量: 1 栏目名: 钓鱼百科

到期令牌的积累大大增加数据库的大小,可能会降低服务的性能,特别是在资源有限的环境中。

OpenStack安装部署

一、基础准备工作

部署环境:CentOS 7 64

1、关闭本地iptables防火墙并设置开机不自启动

# systemctl stop firewalld.service# systemctl disable firewalld.service

2、关闭本地selinux防火墙

# vim /etc/sysconfig/selinux SELINUX=disabled# setenforce 0

3、设置主机计算机名称

# hostnamectl set-hostname controller

4、本地主机名称和ip的解析

# vim /etc/hosts192.168.0.104 controller

5、安装ntp时间校准工具

# yum -y install ntp# ntpdate asia.pool.ntp.org

6、安装第三方yum源

# yum -y install yum-plugin-priorities# yum -y install http://dl.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-2.noarch.rpm# yum -y install http://rdo.fedorapeople.org/openstack-juno/rdo-release-juno.rpm

7、升级系统软件包并重新系统

# yum upgrade# reboot

二、安装配置mariadb数据库

1、安装mariadb数据库

# yum -y install mariadb mariadb-server MySQL-python

2、配置mariadb数据库

# cp /etc/my.cnf /etc/my.cnf.bak# rpm -ql mariadb# vim /etc/my.cnf.d/server.cnf[mysqld]bind-address = 0.0.0.0default-storage-engine = innodbinnodb_file_per_tablecollation-server = utf8_general_ciinit-connect = 'SET NAMES utf8'character-set-server = utf8

3、启动mariadb数据库

# systemctl enable mariadb.service# systemctl start mariadb.service

三、安装消息队列服务

1、安装rabbit所需软件包

# yum -y install rabbitmq-server

2、启动rabbit服务

# systemctl enable rabbitmq-server.service# systemctl start rabbitmq-server.service

3、设置rabbit服务密码

# rabbitmqctl change_password guest rabbit

四、安装keyston用户认证组件

1、创建keystone数据库和授权用户

mysql -u root -pCREATE DATABASE keystone;GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'localhost' IDENTIFIED BY 'keystone';GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'%' IDENTIFIED BY 'keystone';

2、安装keystone组件包

# yum -y install openstack-utils openstack-keystone python-keystoneclient

3、配置keystone文件

# cp /etc/keystone/keystone.conf /etc/keystone/keystone.conf.bak# vim /etc/keystone/keystone.conf [DEFAULT]verbose = True[database]connection = mysql://keystone:keystone@controller/keystone[token]provider = keystone.token.providers.uuid.Providerdriver = keystone.token.persistence.backends.sql.Token

4、创建证书和秘钥文件

# keystone-manage pki_setup --keystone-user keystone --keystone-group keystone# chown -R keystone:keystone /var/log/keystone# chown -R keystone:keystone /etc/keystone/ssl# chmod -R o-rwx /etc/keystone/ssl

5、同步keystone到mariadb数据库

# su -s /bin/sh -c "keystone-manage db_sync" keystone

6、启动keystone服务并开机自启动

# systemctl enable openstack-keystone.service# systemctl start openstack-keystone.service

7、清除过期的令牌

默认情况下,身份服务存储在数据库中过期的令牌无限。到期令牌的积累大大增加数据库的大小,可能会降低服务的性能,特别是在资源有限的环境中。我们建议您使用cron配置一个周期性任务,清除过期的令牌时

# (crontab -l -u keystone 2>&1 | grep -q token_flush) ||echo '@hourly /usr/bin/keystone-manage token_flush >/var/log/keystone/keystone-tokenflush.log 2>&1'>> /var/spool/cron/keystone

—————————-Create tenants,user,and roles———————————

1、配置admin的token

# export OS_SERVICE_TOKEN=$(openssl rand -hex 10)# export OS_SERVICE_ENDPOINT=http://controller:35357/v2.0# echo $OS_SERVICE_TOKEN > ~/ks_admin_token# openstack-config --set /etc/keystone/keystone.conf DEFAULT admin_token$OS_SERVICE_TOKEN# service openstack-keystone restart

2、创建tenant、user and role

a.Create the admin tenant、user、role# keystone tenant-create --name admin --description "Admin Tenant"# keystone user-create --name admin --pass admin --email admin@zhengyansheng.com# keystone role-create --name adminb.Add the admin tenant and user to the admin role:# keystone user-role-add --tenant admin --user admin --role adminc.By default, the dashboard limits access to users with the _member_ role.# keystone role-create --name _member_d.Add the admin tenant and user to the _member_ role:# keystone user-role-add --tenant admin --user admin --role _member_

3、创建一个普通demo项目和用户

a.Create the demo tenant:# keystone tenant-create --name demo --description "Demo Tenant"b.Create the demo user:# keystone user-create --name demo --pass demo --email demo@zhengyansheng.comc.Add the demo tenant and user to the _member_ role:# keystone user-role-add --tenant demo --user demo --role _member_

4、创建一个service项目

# keystone tenant-create --name service --description "Service Tenant"

————————Create the service entity and API endpoint————————

1、Create the service entity and API endpoint | Create the service entity for the Identity service:

# keystone service-create --name keystone --type identity --description "OpenStack Identity"

2、Create the API endpoint for the Identity service:

# keystone endpoint-create --service-id $(keystone service-list | awk '/ identity / {print $2}') --publicurl http://controller:5000/v2.0 --internalurl http://controller:5000/v2.0 --adminurl http://controller:35357/v2.0 --region regionOne

3、查看keystone认证信息

[root@controller ~]# keystone user-list+----------------------------------+-------+---------+-------------------------+|id|name | enabled |email|+----------------------------------+-------+---------+-------------------------+| 7053cfacc4b047dcabe82f6be0e5dc77 | admin |True| admin@zhengyansheng.com || eea569106329465996e9e09a666838bd |demo |True|demo@zhengyansheng.com |+----------------------------------+-------+---------+-------------------------+[root@controller ~]# keystone tenant-list+----------------------------------+---------+---------+|id|name| enabled |+----------------------------------+---------+---------+| 307fd76766eb4b02a28779f4e88717ce |admin|True|| f054bd56851b4a318a19233a13e13d31 |demo|True|| d865c3b49f6f4bf7b2a0b93e0110e546 | service |True|+----------------------------------+---------+---------+[root@controller ~]# keystone service-list+----------------------------------+----------+----------+--------------------+|id|name|type|description|+----------------------------------+----------+----------+--------------------+| 9754f7bdf78c4000875f1aa5f3291b19 | keystone | identity | OpenStack Identity |+----------------------------------+----------+----------+--------------------+[root@controller ~]# keystone endpoint-list+----------------------------------+-----------+-----------------------------+-----------------------------+------------------------------+----------------------------------+|id|region|publicurl|internalurl| adminurl |service_id|+----------------------------------+-----------+-----------------------------+-----------------------------+------------------------------+----------------------------------+| 6831d6708fe4469fa653b9b5adf801d9 | regionOne | http://controller:5000/v2.0 | http://controller:5000/v2.0 | http://controller:35357/v2.0 | 9754f7bdf78c4000875f1aa5f3291b19 |+----------------------------------+-----------+-----------------------------+-----------------------------+------------------------------+----------------------------------+

4、取消临时设置的环境变量

# unset OS_SERVICE_TOKEN # unset OS_SERVICE_ENDPOINT

5、使用keystone进行用户认证

# keystone --os-tenant-name admin --os-username admin --os-password admin --os-auth-url http://controller:35357/v2.0 token-get# keystone --os-tenant-name admin --os-username admin --os-password admin --os-auth-url http://controller:35357/v2.0 tenant-list# keystone --os-tenant-name admin --os-username admin --os-password admin --os-auth-url http://controller:35357/v2.0 user-list# keystone --os-tenant-name admin --os-username admin --os-password admin --os-auth-url http://controller:35357/v2.0 role-list

6、使用普通用户demo认证测试

# keystone --os-tenant-name demo --os-username demo --os-password demo --os-auth-url http://controller:35357/v2.0 token-get# keystone --os-tenant-name demo --os-username demo --os-password demo --os-auth-url http://controller:35357/v2.0 user-listYou are not authorized to perform the requested action: admin_required (HTTP 403)

7、客户端cli命令行脚本

# vim ~/admin-openrc.sh export OS_TENANT_NAME=adminexport OS_USERNAME=adminexport OS_PASSWORD=adminexport OS_AUTH_URL=http://controller:35357/v2.0
# vim ~/demo-openrc.shexport OS_TENANT_NAME=demoexport OS_USERNAME=demoexport OS_PASSWORD=demoexport OS_AUTH_URL=http://controller:5000/v2.0
# source admin-openrc.sh

8、测试如果取消环境变量,通过keystone仍然能够认证通过说明keystone是配置成功的

四、安装glance组件

1、创建keystone数据库和授权用户

mysql -u root -pCREATE DATABASE glance;GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'localhost' IDENTIFIED BY 'glance';GRANT ALL PRIVILEGES ON glance.* TO 'glance'@'%' IDENTIFIED BY 'glance';

2、创建glance用户并加入到admin组中

# keystone user-create --name glance --pass glance# keystone user-role-add --user glance --tenant service --role admin

3、创建glance服务

# keystone service-create --name glance --type image --description "OpenStack Image Service"

4、创建Identity的服务访问rul

# keystone endpoint-create --service-id $(keystone service-list | awk '/ image / {print $2}') --publicurl http://controller:9292 --internalurl http://controller:9292 --adminurl http://controller:9292 --region regionOne

5、安装配置glance包

# yum -y install openstack-glance python-glanceclient

6、修改glance配置文件

# cp /etc/glance/glance-api.conf /etc/glance/glance-api.conf.bak# vim /etc/glance/glance-api.conf[DEFAULT] verbose = True[database]connection = mysql://glance:glance@controller/glance[keystone_authtoken]auth_uri = http://controller:5000/v2.0identity_uri = http://controller:35357admin_tenant_name = serviceadmin_user = glanceadmin_password = glance[paste_deploy]flavor = keystone[glance_store]default_store = filefilesystem_store_datadir = /var/lib/glance/images/
# cp /etc/glance/glance-registry.conf /etc/glance/glance-registry.conf.bak# vim /etc/glance/glance-registry.conf[DEFAULT]verbose = True[database]connection = mysql://glance:glance@controller/glance[keystone_authtoken]auth_uri = http://controller:5000/v2.0identity_uri = http://controller:35357admin_tenant_name = serviceadmin_user = glanceadmin_password = glance [paste_deploy]flavor = keystone

7、同步glance到mariadb数据库

# su -s /bin/sh -c "glance-manage db_sync" glance

8、启动和开机自启动

# systemctl enable openstack-glance-api.service openstack-glance-registry.service# systemctl start openstack-glance-api.service openstack-glance-registry.service

9、下载上传image镜像

# mkdir /tmp/images# cd /tmp/images# wget http://cdn.download.cirros-cloud.net/0.3.3/cirros-0.3.3-x86_64-disk.img# glance image-create --name "cirros-0.3.3-x86_64" --file cirros-0.3.3-x86_64-disk.img --disk-format qcow2 --container-format bare --is-public True --progress# glance image-list# mv /tmp/images /opt

五、添加一个计算节点

1、创建nova数据库和授权用户

mysql -u root -pCREATE DATABASE nova;GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'localhost' IDENTIFIED BY 'nova';GRANT ALL PRIVILEGES ON nova.* TO 'nova'@'%' IDENTIFIED BY 'nova';

2、创建Nova的用户,加入到admin组、service服务

# keystone user-create --name nova --pass nova# keystone user-role-add --user nova --tenant service --role admin# keystone service-create --name nova --type compute --description "OpenStack Compute"

3、创建计算节点的访问url

# keystone endpoint-create --service-id $(keystone service-list | awk '/ compute / {print $2}') --publicurl http://controller:8774/v2/%(tenant_id)s --internalurl http://controller:8774/v2/%(tenant_id)s --adminurl http://controller:8774/v2/%(tenant_id)s --region regionOne

4、安装Nova包

# yum -y install openstack-nova-api openstack-nova-cert openstack-nova-conductor openstack-nova-console openstack-nova-novncproxy openstack-nova-scheduler python-novaclient# yum -y install openstack-nova-compute sysfsutils

5、修改nova配置文件

# cp /etc/nova/nova.conf /etc/nova/nova.conf.bak# vim /etc/nova/nova.conf[DEFAULT]my_ip = controllervncserver_listen = controllervncserver_proxyclient_address = controllerverbose = Truerpc_backend = rabbitrabbit_host = controllerrabbit_password = rabbitauth_strategy = keystonevnc_enabled = Truevncserver_listen = 0.0.0.0vncserver_proxyclient_address = controllernovncproxy_base_url = http://controller:6080/vnc_auto.html[database]connection = mysql://nova:nova@controller/nova[keystone_authtoken]auth_uri = http://controller:5000/v2.0identity_uri = http://controller:35357admin_tenant_name = serviceadmin_user = novaadmin_password = nova[glance]host = controller[libvirt]virt_type = qemu

6、同步nova到moriadb数据库

# su -s /bin/sh -c "nova-manage db sync" nova

7、启动众多服务开机自启动

# systemctl enable openstack-nova-api.service openstack-nova-cert.serviceopenstack-nova-consoleauth.service openstack-nova-scheduler.serviceopenstack-nova-conductor.service openstack-nova-novncproxy.service# systemctl start openstack-nova-api.service openstack-nova-cert.serviceopenstack-nova-consoleauth.service openstack-nova-scheduler.serviceopenstack-nova-conductor.service openstack-nova-novncproxy.service# systemctl enable libvirtd.service openstack-nova-compute.service# systemctl start libvirtd.service# systemctl start openstack-nova-compute.service# nova service-list# nova image-list

六、添加一个网络节点

1、创建neutron数据库和授权用户

mysql -u root -pCREATE DATABASE neutron;GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'localhost' IDENTIFIED BY 'neutron';GRANT ALL PRIVILEGES ON neutron.* TO 'neutron'@'%' IDENTIFIED BY 'neutron';

2、创建neutron用户,加入到admin组中,并创建neutron服务

# keystone user-create --name neutron --pass neutron# keystone user-role-add --user neutron --tenant service --role admin# keystone service-create --name neutron --type network --description "OpenStack Networking"

3、创建neutron的endponit访问url

# keystone endpoint-create --service-id $(keystone service-list | awk '/ image / {print $2}') --publicurl http://controller:5672 --internalurl http://controller:5672 --adminurl http://controller:5672 --region regionOne

4、安装neutron包

# yum -y install openstack-neutron openstack-neutron-ml2 python-neutronclient which

5、修改neutron配置文件

# cp /etc/neutron/neutron.conf /etc/neutron/neutron.conf.bak# vim /etc/neutron/neutron.conf [DEFAULT] rpc_backend = rabbitrabbit_host = controllerrabbit_password = rabbitauth_strategy = keystonecore_plugin = ml2service_plugins = routerallow_overlapping_ips = Truenotify_nova_on_port_status_changes = Truenotify_nova_on_port_data_changes = Truenova_url = http://controller:8774/v2nova_admin_auth_url = http://controller:35357/v2.0nova_region_name = regionOnenova_admin_username = novanova_admin_tenant_id = SERVICE_TENANT_IDnova_admin_password = novaverbose = True[database]connection = mysql://neutron:neutron@controller/neutron[keystone_authtoken]auth_uri = http://controller:5000/v2.0identity_uri = http://controller:35357admin_tenant_name = serviceadmin_user = neutronadmin_password = neutron

6、测试

# keystone tenant-get service
# cp /etc/neutron/plugins/ml2/ml2_conf.ini /etc/neutron/plugins/ml2/ml2_conf.ini.bak# vim /etc/neutron/plugins/ml2/ml2_conf.ini[ml2]type_drivers = flat,gretenant_network_types = gremechanism_drivers = openvswitch[ml2_type_gre] tunnel_id_ranges = 1:1000[securitygroup] enable_security_group = Trueenable_ipset = Truefirewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
# vim /etc/nova/nova.conf [DEFAULT]network_api_class = nova.network.neutronv2.api.APIsecurity_group_api = neutronlinuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriverfirewall_driver = nova.virt.firewall.NoopFirewallDriver[neutron]url = http://controller:9696auth_strategy = keystoneadmin_auth_url = http://controller:35357/v2.0admin_tenant_name = serviceadmin_username = neutronadmin_password = neutron
# ln -s /etc/neutron/plugins/ml2/ml2_conf.ini /etc/neutron/plugin.ini

7、同步neutron到mariadb数据库

# su -s /bin/sh -c "neutron-db-manage --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugins/ml2/ml2_conf.ini upgrade juno" neutron

8、重新启动compute服务

# systemctl restart openstack-nova-api.service openstack-nova-scheduler.service openstack-nova-conductor.service

9、开机自启动服务

# systemctl enable neutron-server.service# systemctl start neutron-server.service

10、查看neutron-server进程

# neutron ext-list

11、查看相关信息

# tail -f /var/log/neutron/server.log

12、配置内核网络参数

# cp /etc/sysctl.conf /etc/sysctl.conf.bak# vim /etc/sysctl.conf net.ipv4.ip_forward=1net.ipv4.conf.all.rp_filter=0net.ipv4.conf.default.rp_filter=0# sysctl -p

13、安装网络组件包

# yum -y install openstack-neutron openstack-neutron-ml2 openstack-neutron-openvswitch

14、配置常用的网络组件

# vim /etc/neutron/plugins/ml2/ml2_conf.ini[ml2_type_flat] flat_networks = external [ovs] local_ip = INSTANCE_TUNNELS_INTERFACE_IP_ADDRESSenable_tunneling = Truebridge_mappings = external:br-ex[agent]tunnel_types = gre
# cp /etc/neutron/l3_agent.ini /etc/neutron/l3_agent.ini.bak# vim /etc/neutron/l3_agent.ini[DEFAULT] interface_driver = neutron.agent.linux.interface.OVSInterfaceDriveruse_namespaces = Trueexternal_network_bridge = br-ex verbose = True
# cp /etc/neutron/dhcp_agent.ini /etc/neutron/dhcp_agent.ini.bak# vim /etc/neutron/dhcp_agent.ini [DEFAULT]interface_driver = neutron.agent.linux.interface.OVSInterfaceDriverdhcp_driver = neutron.agent.linux.dhcp.Dnsmasquse_namespaces = True verbose = Truednsmasq_config_file = /etc/neutron/dnsmasq-neutron.conf
# cp /etc/neutron/metadata_agent.ini /etc/neutron/metadata_agent.ini.bak# vim /etc/neutron/metadata_agent.ini[DEFAULT] auth_url = http://controller:5000/v2.0auth_region = regionOneadmin_tenant_name = serviceadmin_user = neutronadmin_password = neutronnova_metadata_ip = controller metadata_proxy_shared_secret = METADATA_SECRET verbose = True
# vim /etc/nova/nova.conf [neutron] service_metadata_proxy = Truemetadata_proxy_shared_secret = METADATA_SECRET

15、在控制节点上重新启动API服务

# systemctl restart openstack-nova-api.service

七、安装配置dashboard

1、安装dashboard和所需的和依赖包

# yum install openstack-dashboard httpd mod_wsgi memcached python-memcached

2、修改dashboard配置文件

# cp /etc/openstack-dashboard/local_settings /etc/openstack-dashboard/local_settings.bak# vim /etc/openstack-dashboard/local_settingsOPENSTACK_HOST = "controller"ALLOWED_HOSTS = ['*']CACHES = {'default': {'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache','LOCATION': '127.0.0.1:11211',}}TIME_ZONE = "TIME_ZONE"

3、运行web服务连接OpenStack服务

# setsebool -P httpd_can_network_connect on

4、由于包装缺陷,仪表板不能正确加载CSS。运行以下命令来解决这个问题:

# chown -R apache:apache /usr/share/openstack-dashboard/static

5、启动Web服务器和会话存储服务和配置启动系统启动时:

# systemctl enable httpd.service memcached.service# systemctl start httpd.service memcached.service

八、访问测试

1、基于HTTP进行访问测试:

好了,今天就先到这里吧!

    推荐阅读
  • 林有有扮演者张月采访(林有有扮演者张月被网暴)

    在剧中“林有有”手段极高,死缠烂打年纪大的已婚男士许幻山,被网友骂其不要脸。但是在看到大结局的时候观众却对林有有的下场十分的不满,“林有有”不仅全身而退,女主甚至买机票送她上飞机。网暴优秀的人总是会被发掘,在《三十而已》中张月成为了话题人物,被网友骂上了热搜。很多的网友特意关注张月就为了骂她,面对着网友的污言秽语,张月只能停了自己的微博。

  • 鸡胸肉煮多久能熟(白水煮鸡胸肉做法)

    鸡胸肉煮多久能熟煮10-15分钟即可。但水煮鸡胸肉具体需要多长时间,还应该根据鸡胸肉的用量、火力大小等决定。白水煮鸡胸肉做法:鸡胸肉洗净后去掉多余的油脂和血块部分。鸡胸肉边缘和中间(乳沟)的部分,会有一些小的油脂和血块,要切除掉。剖好的鸡胸肉厚度不会太厚,基本上能连成大片。接近沸腾的水温入锅,鸡胸肉入锅后,改小火,掐表煮上两分钟,不多不少。

  • 知道一些保护牙齿的小知识(关于牙齿的小常识)

    如果平时不注意口腔卫生,附着在牙齿表面的牙菌斑、牙石在牙龈部积聚,容易引起牙龈发炎。有些朋友口腔溃疡反复发作,也与牙龈炎脱不了干系,应尽早寻求牙医帮助,对症下药。乳牙釉质矿化程度比恒牙低,因此儿童的牙齿呈乳白色。牙菌斑的附着比较牢固,要靠机械摩擦——刷牙、洗牙来去除。

  • 螨虫感染自愈(扩散床上螨虫成窝)

    引发黑头、粉刺,以及胸前、背后大片大片痘痘。首先在容器中倒入一勺食盐,食盐有杀菌消毒的作用。接着倒入白醋,白醋有清洁的作用,也能够起到杀菌消毒去异味的作用。最后加入一些小苏打,小苏打有很强的去污能力,搅拌均匀。螨虫喜欢寄居在床垫、地毯、枕垫、坐垫、凉席中,换季时最好及时除螨。需注意,很多人认为开水能烫死螨虫,其实,只有浸泡在开水中半小时以上,除螨效果才明显,很多家庭并不具备这个条件。

  • 饮水机换水技巧(饮水机桶装水的更换方法)

    饮水机换水技巧首先拔掉饮水机的电源,然后把桶装水空瓶子拿下来,放在地面上。选择桶装水,质量一定要好,要有生产地址和合格标志,水的质量关系饮用的安全。把桶装水的外包装袋子撕下,用剪刀把桶装水的小口子剪开,要整齐一点。把桶装水放到饮水机上,左右旋转一下,看桶装水有没有放牢固,会不会倒下来。插上饮水机电源,看电源指示灯亮了,看桶装水有没有冒泡,有没有正常使用。

  • 脑电图检查会有什么感觉(关于脑电图检查)

    做脑电图检查时,大脑没有接受任何刺激,仅仅是记录它自己的电活动而已,因此这是一项无痛、无创性的脑功能检查,也不对大脑施加任何外界干扰。因此,除非检查时发病,脑电图检查本身不会引发任何异常感觉和不适,不仅对于成人安全,对儿童也安全,甚至是新生儿也可以放心做脑电图检查,对生长发育也没有任何影响。

  • dnf怎样赚钱快(DNF每天白捡30W金币2个赚钱小项目)

    每天1分钟,白捡30W金币由于团本再次免票,堇青石的消耗大幅度减少,加上进图系统优化,搬砖效率两者的共同作用下,堇青石的价格一路走低,有的大区已经跌破3000金币大关,秀儿所在跨三A,也已经来到了3000金币1个,接下来,秀儿要分享的第一个赚钱小项目,和堇青石有关。首先,打开拍卖行,搜索堇青石,购买80个,按照3000每个计算,投入24W金币。

  • 2022海口狂欢水世界试玩期门票价格 海口狂欢水世界门票多少钱

    海口狂欢水世界试玩期购票试玩期时间:2022年4月24日-4月28日票价类型:①特价票9.9元:限100张,售完为止;②特价票19.9元:限100张,售完为止;③特价票29.9元:限100张,售完为止;④正常售价票59.9元:不限量。

  • 战神4巴德尔为什么恨芙蕾雅 战神4芙蕾雅是好人吗

    芙蕾雅为了保护儿子而给儿子下咒。奥丁应该是知道巴德尔的弱点。奥丁清楚诸神黄昏不可避免,所以他所做的从来不是避免诸神黄昏,而是尽一切可能打击消灭潜在的对手,选择最有利的开战时机,增加自己在诸神黄昏之战中的胜算。光明神的死亡是诸神黄昏开启的必要条件之一,所以在奥丁的计划里,巴德尔是必死的。

  • 花椒科学培育技巧 花椒科学培育技巧和方法

    因为花椒树的种子皮是比较坚硬的,并且油脂含量多,其防水防腐能力强,如果没有去壳的话,那么是非常难吸水萌发的。花椒树的移栽时间在冬春季都可进行。花椒树一般在种植后4年左右便会结果,因此在造林后到结果之前,都可在林间种植一些蔬菜作物,对其经济效益是非常有利的。