I was interested in learning how to run the dashboard after installing Devstack. The reason being that I need a method to check that Devstack installed correctly and the Devstack manual http://devstack.org/guides/single-vm.html mentions that you should be able to access the dashboard after installation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vagrant@precise64:~$ sudo ufw allow 80 | |
| Rules updated | |
| Rules updated (v6) | |
| vagrant@precise64:~$ sudo ufw status | |
| Status: inactive | |
| vagrant@precise64:~$ sudo ufw status verbose | |
| Status: inactive | |
| vagrant@precise64:~$ sudo ufw enable | |
| Command may disrupt existing ssh connections. Proceed with operation (y|n)? y | |
| Firewall is active and enabled on system startup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ curl http://localhost/ | |
| <!DOCTYPE html> | |
| <html lang="en" xml:lang="en"> | |
| <head> | |
| <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
| <title>Login - OpenStack Dashboard</title> | |
| <link rel="stylesheet" href="/static/dashboard/css/514b40d0d2b2.css" type="text/css" media="screen" /> |
Published a ~3400 word blog post about how to install Devstack and Ceilometer on a Vagrant virtual machine
http://terriyu.info/blog/posts/2013/07/installing-devstack-ceilometer/
Published a ~2800 word blog post about my experience becoming a first time contributor to open source software:
http://terriyu.info/blog/posts/2013/07/becoming-foss-contributor/
I asked dhellmann for references on unit testing and test driven development. He said:
I think I picked up the idea from some old eXtreme Programming guides, but XP has been folded into the "Agile" methodologies camp now. If you like books, I
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2013-07-31 00:41:35.232 25724 INFO keystoneclient.middleware.auth_token [-] Starting keystone auth_token middleware | |
| 2013-07-31 00:41:35.234 25724 INFO keystoneclient.middleware.auth_token [-] Using /var/cache/ceilometer as cache directory for signing certificate | |
| 2013-07-31 00:41:35.235 25724 WARNING keystoneclient.middleware.auth_token [-] signing_dir mode is 0755 instead of 0700 | |
| 2013-07-31 00:41:35.236 25724 DEBUG ceilometer.storage [-] looking for 'mongodb' driver in 'ceilometer.storage' get_engine /opt/stack/ceilometer/ceilometer/storage/__init__.py:68 | |
| 2013-07-31 00:41:35.410 25724 INFO ceilometer.storage.impl_mongodb [-] connecting to MongoDB on mongodb://localhost:27017/ceilometer | |
| 2013-07-31 00:41:35.430 25724 DEBUG ceilometer.pipeline [-] Pipeline config file: /etc/ceilometer/pipeline.yaml setup_pipeline /opt/stack/ceilometer/ceilometer/pipeline.py:345 | |
| 2013-07-31 00:41:35.439 25724 INFO ceilometer.pipeline [-] Pipeline config: [{'publishers': ['rpc://'], 'interval': 600, 'transformers': None, 'name': 'm |
I asked vkmc about logging in OpenStack since she wrote a nice post about it: http://vmartinezdelacruz.com/logging-and-debugging-in-openstack/