Skip to content

Instantly share code, notes, and snippets.

@jruels
Last active August 29, 2015 13:56
Show Gist options
  • Save jruels/9237808 to your computer and use it in GitHub Desktop.
Save jruels/9237808 to your computer and use it in GitHub Desktop.
neutron stuff
mysql> select * from routers;
+----------------------------------+--------------------------------------+------------+--------+----------------+--------------------------------------+-------------+
| tenant_id | id | name | status | admin_state_up | gw_port_id | enable_snat |
+----------------------------------+--------------------------------------+------------+--------+----------------+--------------------------------------+-------------+
| e33cf2388aea489c9ad4402e770e8afa | 28acd228-67b8-41aa-bbce-e7edf1ee00dc | RTR-PUBLIC | ACTIVE | 1 | 0f608361-ba50-4609-8467-556d4854b240 | 0 |
+----------------------------------+--------------------------------------+------------+--------+----------------+--------------------------------------+-------------+
1 row in set (0.00 sec)
mysql> select * from routerl3agentbindings;
+--------------------------------------+--------------------------------------+--------------------------------------+
| id | router_id | l3_agent_id |
+--------------------------------------+--------------------------------------+--------------------------------------+
| 0c3eb2e6-752b-4897-a407-993469964fe3 | 28acd228-67b8-41aa-bbce-e7edf1ee00dc | cf8c9482-f2ac-4c79-be4f-e9ea14a2c20f |
| 1f1bb9e8-ee6e-4468-be18-d751692e7b3e | 28acd228-67b8-41aa-bbce-e7edf1ee00dc | cf8c9482-f2ac-4c79-be4f-e9ea14a2c20f |
+--------------------------------------+--------------------------------------+--------------------------------------+
2 rows in set (0.00 sec)
RABBIT:
root@553033-ORD-CONTROL-2:~# rabbitmqctl cluster_status
Cluster status of node 'rabbit@553033-ORD-CONTROL-2' ...
[{nodes,[{disc,['rabbit@553013-ORD-CONTROL-1',
'rabbit@553033-ORD-CONTROL-2']}]},
{running_nodes,['rabbit@553013-ORD-CONTROL-1','rabbit@553033-ORD-CONTROL-2']},
{partitions,[]}]
...done.
MYSQL:
root@553033-ORD-CONTROL-2:~# mysql -e "show slave status\G"
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 10.240.0.85
Master_User: repl
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-binlog.000200
Read_Master_Log_Pos: 56495059
Relay_Log_File: mysqld-relay-bin.000220
Relay_Log_Pos: 56495208
Relay_Master_Log_File: mysql-binlog.000200
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 56495059
Relay_Log_Space: 56495411
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: 0
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
Replicate_Ignore_Server_Ids:
Master_Server_Id: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment