一、 环境准备
搭建Murano和Murano-dashboard是在Red Hat Enterprise Linux Server release 7.1 (Maipo)上搭建的,之前这个环境已经搭建了Openstack的环境,因此一些系统的工具包也安装过了,例如:gcc,python-pip,mysql。
二、在Devstack上配置安装Murano
1.首先需要下载dev的包,可以直接从github上clone
git clone https://github.com/openstack-dev/devstack.git
cp lib/murano ${DEVSTACK_DIR}/lib cp lib/murano-dashboard {DEVSTACK_DIR}/lib cp extras.d/70-murano.sh {DEVSTACK_DIR}/extras.d
DATABASE_PASSWORD=123456 RABBIT_PASSWORD=123456 SERVICE_TOKEN=123456 SERVICE_PASSWORD=123456 ADMIN_PASSWORD=123456 disable_service n-net enable_service q-svc enable_service q-agt enable_service q-dhcp enable_service q-l3 enable_service q-meta enable_service q-lbaas enable_service q-vpn DEST=/home/OpenStack/workspace DATA_DIR=$DEST/data SERVICE_DIR=$DEST LOGDIR=/home/OpenStack/workspace/logs LOGFILE=$LOGDIR/stack.sh.log VERBOSE=True LOG_COLOR=True SCREEN_LOGDIR=$LOGDIR/screens Q_PLUGIN=ml2 ENABLE_TENANT_VLANS=True LOGDAYS=1 #RECLONE=True #OFFLINE=True GIT_BASE="http://github.com" IMAGE_URLS=http://download.cirros-cloud.net/0.3.4/cirros-0.3.4-x86_64-disk.img # Enable Heat enable_service heat h-api h-api-cfn h-api-cw h-eng # Enable Murano enable_service murano murano-api murano-engine
4.修改完localrc文件我们执行./stack.sh即可进行一键部署带有Murano的Devstack。
三、手动安装Murano
现在来尝试在上文中提到的环境中手动搭建Murano,之前的OpenStack已经部署上去了,所以我们不需要在devstack的环境中进行部署了。
1.首先安装murano-client,在shell中执行命令:
pip install python-muranoclient
下载Murano代码:
git clone git://git.openstack.org/openstack/murano
[DEFAULT] debug = true verbose = true rabbit_host = %RABBITMQ_SERVER_IP% rabbit_userid = %RABBITMQ_USER% rabbit_password = %RABBITMQ_PASSWORD% rabbit_virtual_host = %RABBITMQ_SERVER_VIRTUAL_HOST% notification_driver = messagingv2 ... [database] backend = sqlalchemy connection = sqlite:///murano.sqlite ... [keystone] auth_url = 'http://%OPENSTACK_HOST_IP%:5000/v2.0' ... [keystone_authtoken] auth_uri = 'http://%OPENSTACK_HOST_IP%:5000/v2.0' auth_host = '%OPENSTACK_HOST_IP%' auth_port = 5000 auth_protocol = http admin_tenant_name = %OPENSTACK_ADMIN_TENANT% admin_user = %OPENSTACK_ADMIN_USER% admin_password = %OPENSTACK_ADMIN_PASSWORD% ... [murano] url = http://%YOUR_HOST_IP%:8082 [rabbitmq] host = %RABBITMQ_SERVER_IP% login = %RABBITMQ_USER% password = %RABBITMQ_PASSWORD% virtual_host = %RABBITMQ_SERVER_VIRTUAL_HOST%
4.给Murano创建endpoint
keystone endpoint-create [--region <endpoint-region>] --service-id <service-id> [--publicurl <public-url>] [--adminurl <admin-url>] [--internalurl <internal-url>]
5.安装API
install murano-api --config-file ./etc/murano/murano.conf
install murano-engine –config-file ./etc/murano/murano.conf
四、安装murano-dashboard
1.下载murano-dashboard和horizon的代码
git clone git://git.openstack.org/openstack/murano-dashboard git clone git://git.openstack.org/openstack/horizon
2.复制murano的plugin文件到horizon文件夹中
cp ../murano-dashboard/muranodashboard/local/_50_murano.py openstack_dashboard/local/enabled/
cp openstack_dashboard/local/local_settings.py.example openstack_dashboard/local/local_settings.py
python manage.py runserver <IP:PORT>
5.在浏览器中输入<IP:PORT>,登录进去就可以在页面左侧看到Murano的项目了。
版权声明:本文为博主原创文章,未经博主允许不得转载。
手动安装OpenStack-Murano和Murano-dashboard
原文地址:http://blog.csdn.net/lanceyang1992/article/details/47973665