Results 1 to 10 of 10

Thread: Server hardware monitoring from the desktop machine

  1. #1
    Join Date
    Jan 2013
    Beans
    3

    Server hardware monitoring from the desktop machine

    Hello

    Pls correct me if i put the topic in a wrong place.


    I run Ubuntu on a desktop and ubuntu server as a homeNAS. Want to monitor the hardware on a desktop real-time. Lm-sensors on the server working good, but it's not too comfortable to login and monitor through SSH.

    Guess, i'm talking about something like: make lm-sensors of the server to share data with the, say, psensor of the desktop PC. Is there any way to do that?
    Thank you.

  2. #2

    Re: Server hardware monitoring from the desktop machine

    If you have key-based ssh then it's as simple as
    Code:
    ssh user@host lm_sensors
    I don't know about psensor's configuration options, but they are other possibilities as well, a conky script.rc or a bash alias (assume key-based ssh), snmp, or collectl.

    Other, more experienced members will have something clever to add and I wish I had thought of.

    HTH!
    Windows assumes the user is an idiot.
    Linux demands proof.

  3. #3
    Join Date
    Mar 2012
    Location
    New Meadows, Idaho
    Beans
    242
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Server hardware monitoring from the desktop machine

    Little more complicated... Install x11vnc on the server and and then log into server with kdrc and then you can see the desktop. Like my setup I'm using conky.

    Habitual seems to have the easy way...
    Michael Nelson -=- AKA: Mopar1973Man

  4. #4
    Join Date
    Mar 2006
    Location
    Williams Lake
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Server hardware monitoring from the desktop machine

    Nagios3 should do what you need, and it has a web interface, see the screenshot. I just installed it, and haven't had the time to set up hardware monitoring yet, I'll post back here, once I have it done, with screenshots. Nagios3 is in the repositories.
    Attached Images Attached Images

  5. #5
    Join Date
    Jan 2013
    Beans
    3

    Re: Server hardware monitoring from the desktop machine

    ssh user@host lm_sensors is basically what i do now. The idea is to monitor the status in a usual desktop environment.
    The idea to install Xserver on a NAS machine doesn't look so attractive actually (but Mopar1973Man you're right, that's a nice way in some cases). Here the problem is the same: i don't have an access from the desktop, i have to log in.

    Going to check Nagios3 as suggested by cariboo907 but i'd prefer something else than a web access.

    Yeah, something like lm-sensors sending the data to some port, and a conky on my machine which listens this port as Habitual probably is thinking of. Pretty sure that could be done by a bash script or something, seems here i have to get into the shell scripting a bit.
    Thanks, will post here if i find something.

  6. #6
    Join Date
    Jan 2013
    Beans
    3

    Re: Server hardware monitoring from the desktop machine

    Made a short trick: send the conky output to the file, than access it from the local PC over http. Now going to add all the servers we work with (mostly CentOS and Debian) on the same page: so will have a kind of a monitor center, real time, single place.
    1.jpg
    Ugly but working.

    Probably a good idea will be to write the file itself somewhere in /proc and access it via the simlink.

    Thanks a lot for those helping.
    Kill all humans!

  7. #7

    Re: Server hardware monitoring from the desktop machine

    Glad it worked out!
    Windows assumes the user is an idiot.
    Linux demands proof.

  8. #8
    Join Date
    Sep 2012
    Beans
    579
    Distro
    Ubuntu Gnome 17.04 Zesty Zapus

    Re: Server hardware monitoring from the desktop machine

    Quote Originally Posted by openhairpinleft View Post
    Made a short trick: send the conky output to the file, than access it from the local PC over http. Now going to add all the servers we work with (mostly CentOS and Debian) on the same page: so will have a kind of a monitor center, real time, single place.
    1.jpg
    Ugly but working.

    Probably a good idea will be to write the file itself somewhere in /proc and access it via the simlink.

    Thanks a lot for those helping.
    Kill all humans!
    Please could you elaborate a little on your conky solution for this? I'm new to ubuntu server and am currently looking into the best remote monitoring solution for hardware and OS performance.

    TIA... K

  9. #9
    Join Date
    Aug 2009
    Beans
    16

    Re: Server hardware monitoring from the desktop machine

    I use conky too, and gmemusage, but via X11 forwarding over SSH which seems much easier and more lightweight and secure. X Windows appears to already be installed in Ubuntu server (the standard, non-"minimal" option for 12.04 LTS, at least) and X11 is enabled by default in the OpenSSH package, and so all I've had to do is install xauth, IIRC. (And enable X11 forwarding in my SSH client, of course.)

  10. #10
    Join Date
    Jul 2010
    Beans
    16

    Re: Server hardware monitoring from the desktop machine

    Quote Originally Posted by openhairpinleft View Post
    I run Ubuntu on a desktop and ubuntu server as a homeNAS. Want to monitor the hardware on a desktop real-time. Lm-sensors on the server working good, but it's not too comfortable to login and monitor through SSH.

    Guess, i'm talking about something like: make lm-sensors of the server to share data with the, say, psensor of the desktop PC. Is there any way to do that?
    Thank you.
    See http://wpitchoune.net/blog/psensor/remote-monitoring/

    Install (sudo apt-get install psensor-server), and run 'psensor-server' on your server.

    On your desktop, you can monitor the server by using a browser (http://yourserver:3131), or 'psensor --url=yourserver:3131'.

    Alternativaly, psensor-server is providing a JSON based web api that you can programmaticaly use.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •