ネットワーク管理者エラー

ネットワーク管理者エラー

nm-appletScientific Linux 6.4 で NetworkManager のアプレットを実行すると、次の結果が表示されます。

[root@computer]# nm-applet

**(nm-applet:4157): 警告**:bus_init(): セッションバスを取得できません。メッセージバスデーモンが実行されていることを確認してください!メッセージ:応答を受信できませんでした。考えられる理由は次のとおりです。リモートアプリケーションが応答を送信していない、メッセージバスセキュリティポリシーが応答をブロックしている、応答がタイムアウトしている、またはネットワーク接続が中断されました。

GConfエラー:構成サーバーに接続できません。 ORBitのTCP / IPネットワーキングを有効にする必要があるか、システムの競合が原因でNFSロックが期限切れになっている可能性があります。バラより http://projects.gnome.org/gconf/参考用。 (詳細 - 1:セッションに接続できません:応答を受信できませんでした。考えられる理由は次のとおりです。リモートアプリケーションが応答を送信していない、メッセージバスセキュリティポリシーが応答をブロックしている、応答のタイムアウトが期限切れ、ネットワーク接続が切断されました。)

nm-applet インスタンスはすでに実行中です。

(nm-applet:4157): GConf - 警告**: GConfClient 0x9cac60 ディレクトリ '/system/networking/connections' は監視されません。

コマンドを渡すと、lspci -v次のようになります。

0c:00.0 Network controller: Broadcom Corporation BCM4312 802.11b/g LP-PHY (rev 01)
Subsystem: Dell Wireless 1397 WLAN Mini-Card
Flags: bus master, fast devsel, latency 0, IRQ 17
Memory at f69fc000 (64-bit, non-prefetchable) [size=16K]
Capabilities: [40] Power Management version 3
Capabilities: [58] Vendor Specific Information: Len=78 <?>
Capabilities: [e8] MSI: Enable- Count=1/1 Maskable- 64bit+
Capabilities: [d0] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [13c] Virtual Channel
Capabilities: [160] Device Serial Number 18-6d-04-ff-ff-2c-70-1a
Capabilities: [16c] Power Budgeting <?>
Kernel driver in use: b43-pci-bridge
Kernel modules: ssb

この問題をどのように解決できますか?

ベストアンサー1

すでに実行していますか?

nm-appletすでにNetworkManagerアプレットを実行していますか?次のコマンドを使用して確認できます。

$ pgrep -f nm-applet

数値を返すと、すでに実行されており、PIDを処理しています。

はい

$ pgrep -f nm-applet
2217

ユーザーとして2番目に実行しようとすると、saml次のメッセージが表示されます。

$ nm-applet 
An instance of nm-applet is already running.

** (nm-applet:32393): WARNING **: <WARN>  constructor(): Couldn't initialize the D-Bus manager.

私が次のように実行している場合root

$ nm-applet 
An instance of nm-applet is already running.

rootとして実行しますか?

NetworkManagerのアプレットをrootとして実行するのはおそらく良い考えではありません。通常のユーザーアカウントで実行しましょう。

どうすればいいですか?

まず、サービスを再起動してみましょうNetworkManager

$ sudo service NetworkManager restart

nm-applet次に、実行を試みる前に実行していないことを確認します。たぶん次のコマンドで殺すことができます:

$ pkill nm-applet

第三に、サービスが正しく実行されていることnm-toolを確認するためにコマンドラインツールを使用してみました。NetworkManager

例:

$ nm-tool |less
NetworkManager Tool

State: connected

- Device: eth0 -----------------------------------------------------------------
  Type:              Wired
  Driver:            e1000e
  State:             unavailable
  Default:           no
  HW Address:        F1:12:12:2F:7D:4E

  Capabilities:
    Carrier Detect:  yes

  Wired Properties
    Carrier:         off

- Device: wlan0  [Auto none_of_your_business_3] --------------------------------
  Type:              802.11 WiFi
  Driver:            iwlagn
...
...

おすすめ記事