rabbitmq 簡單運維命令
1.按以下配置在雲平臺中建立雲主機,完成本任務下的相關試題後關閉雲主 機。 雲主機: (1)名稱:IaaS (2)映象檔案:Xiandian-IaaS-All.qcow2 (3)雲主機型別:4cpu、8G 記憶體、100G 硬碟 (4)網路:網路 1:int-net1,繫結浮動 IP 網路 2:int-net2 注:該映象已安裝 IaaS 平臺所有可能使用的元件,用於完成 IaaS 平臺相關 運維操作題,必須按以上配置資訊配置接入兩個網路才能保證雲主機執行正常。 根據題目要求,連線相應的雲主機或各節點伺服器,進行以下答題。
2.使用 rabbitmqctl 建立使用者 xiandian-admin,密碼為 admin。將以上所有操 作命令及對應的反饋結果以文字形式提交到答題框中。
[[email protected] /]# rabbitmqctl add_user xiandian-admin admin
Creating user "xiandian-admin" ...
3.使用 rabbitmqctl 命令查詢所有使用者列表,將以上所有操作命令及對應的反 饋結果以文字形式提交到答題框中。
[[email protected] /]# rabbitmqctl list_users Listing users ... xiandian-admin [] openstack [] guest [administrator]
4.`使用命令對 xiandian-admin 使用者進行授權,對本機所有資源可寫可讀許可權, 將操作命令和返回結果以文字形式提交到答題框。
[[email protected] /]# rabbitmqctl set_permissions xiandian-admin '.*' '.*' '.*'
Setting permissions for user "xiandian-admin" in vhost "/" ...
- 使用 rabbitmqctl 命令查詢叢集狀態,將操作命令及對應的反饋結果以文 本形式提交到答題框中。
[[email protected] /]# rabbitmqctl cluster_status
Cluster status of node [email protected] ...
[{nodes,[{disc,[[email protected]]}]},
{running_nodes,[[email protected]]},
{cluster_name,<<"[email protected]">>},
{partitions,[]},
{alarms,[{[email protected],[]}]}]
6.使用命令給 xiandian-admin 使用者建立 administrator 角色,並查詢,將以上所有操作命令及對應的反饋結果以文字形式提交到答題框中
[[email protected] /]# rabbitmqctl set_user_tags xiandian-admin administrator
Setting tags for user "xiandian-admin" to [administrator] ...
7.使用命令對使用者 xiandian-admin 進行授權,對本機所有資源可寫可讀許可權, 然後查詢 xiandian-admin 使用者的授權資訊,將操作命令及對應的反饋結果以文字 形式提交到答題框中。
[[email protected] /]# rabbitmqctl set_permissions xiandian-admin '.*' '.*' '.*'
Setting permissions for user "xiandian-admin" in vhost "/" ...
[[email protected] /]# rabbitmqctl list_user_permissions xiandian-admin
Listing permissions for user "xiandian-admin" ...
/ .* .* .*
8.使用 rabbitmqctl 命令,檢視佇列資訊,所包含的資訊包括 name,arguments, messages,memory,將操作命令和返回結果以文字形式提交到答題框。
[[email protected] /]# rabbitmqctl list_queues
9.通過修改配置檔案的方式修改 memcache 的快取大小,使用 ps 相關命令查 詢 memcahce 程序的資訊,將修改的配置檔案全路徑檔名、修改的引數以及相 應的引數值、查詢到的 memcache 程序資訊以文字形式提交到答題框中
[[email protected] local]# vi /etc/sysconfig/memcached
[[email protected] local]# ps -ef | grep memcached
memcach+ 5010 1 0 08:16 ? 00:00:00 /usr/bin/memcached -u memcached -p 11211 -m 64 -c 1024
root 31249 4478 0 10:05 pts/0 00:00:00 grep --color=auto memcached