Koozali.org: home of the SME Server

[Announce] : release of smeserver-sme7admin-1.1.0

Offline p-jones

  • *
  • 594
  • +0/-0
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #45 on: April 08, 2006, 02:10:43 PM »
For me the host name column is totally blank
...

Landry

[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #46 on: April 11, 2006, 09:33:34 AM »
probably because gethostbyaddr doesn't return the hostname information. When you ping your host from the server, is the dns name correctly mapped to the ip ?

Offline p-jones

  • *
  • 594
  • +0/-0
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #47 on: April 11, 2006, 10:12:59 AM »
"When you ping your host from the server, is the dns name correctly mapped to the ip ?"

Yes.
...

jhale1966

[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #48 on: July 13, 2006, 05:20:40 PM »
I created the database listed in the config page for sme7admin but I don't know the table structures for the program to store the data.

Does someone have a dump of the tables?

Thanks!

Landry

[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #49 on: July 14, 2006, 11:49:16 AM »
The database and the tables are created when you install the rpm.... why do you try to manually create it ??

Anyway, all the database structure is in /usr/share/doc/smeserver-sme7admin-1.1.0/tables.sql , once the rpm is installed.

jhale1966

[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #50 on: July 14, 2006, 12:20:37 PM »
Quote from: "Landry"
The database and the tables are created when you install the rpm.... why do you try to manually create it ??

Anyway, all the database structure is in /usr/share/doc/smeserver-sme7admin-1.1.0/tables.sql , once the rpm is installed.

Because when I checked phpMyAdmin on that box, there was no database and no tables. :cry:

Landry

[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #51 on: July 15, 2006, 11:26:41 AM »
When you installed the rpm, did you get an error message upon database & table creation ?
Does sme7admind works or crash ? (check /Var/log/sme7admin.log)
Did you tweak the configuration of mysql ? Sme7admin works directly only ifg mysql settings are the defaults, whereas you have to check user/pass accesses...
Try to deinstall the rpm and reinstall it..

Offline sandoz

  • **
  • 47
  • +0/-0
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #52 on: November 28, 2006, 09:14:20 AM »
i am trying to get temps etc on my via epia
lm_sensors finds some sensors, but at the end i get this:

Code: [Select]

# Warning: the required module vt1211 is not currently installed
# on your system. For status of 2.6 kernel ports check
# http://www.lm-sensors.org/wiki/Devices. If driver is built
# into the kernel, or unavailable, comment out the following line.
modprobe vt1211
# sleep 2 # optional
/usr/bin/sensors -s # recommended


anyone know and how to get the correct drivers?

Offline Teviot

  • *
  • 610
  • +0/-0
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #53 on: November 30, 2006, 02:15:33 AM »
I'm having trouble installing the sensors to my SME Server.

What I am getting is the following code but I don't understand how to put that into scripts to allow SME7ADMIN to show the data when view via the SERVER-MANAGER

Code: [Select]
I will now generate the commands needed to load the required modules.
Just press ENTER to continue:

To make the sensors modules behave correctly, add these lines to
/etc/modules.conf:

#----cut here----
# I2C module options
alias char-major-89 i2c-dev
#----cut here----

To load everything that is needed, add this to some /etc/rc* file:

#----cut here----
# I2C adapter drivers
modprobe i2c-isa
# Chip drivers
# Warning: the required module w83627ehf is not currently installed
# on your system. For status of 2.6 kernel ports check
# http://www.lm-sensors.org/wiki/Devices. If driver is built
# into the kernel, or unavailable, comment out the following line.
modprobe w83627ehf
# sleep 2 # optional
/usr/bin/sensors -s # recommended
#----cut here----

If you have some drivers built into your kernel, the list above will
contain too many modules. Skip the appropriate ones! You really
should try these commands right now to make sure everything is
working properly. Monitoring programs won't work until the needed
modules are loaded.


The sensors I have not showing data are as follows

Fan Speed
Donnees ecrites/lues (Which I think is something to do with the HD)

Any assistance would be great
Regards
M0GLJ
......................................................
I am new to SAIL SME Server v8b6 and have been using SME for many years.
I have already done some research and only ask questions if I still can't work it out.

Offline Arnie

  • ***
  • 81
  • +0/-0
  • Old Dog, New Tricks.
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #54 on: November 30, 2006, 03:35:21 AM »
Try running "/etc/init.d/lm_sensors start"

After the script runs, run "sensors" and see if you get temps and voltages etc.

Once you verify that it's working create a symlink in /etc/rc7.d called "S26lm_sonsors" pointing to "/etc/init.d/lm_sensors"
...

Offline Teviot

  • *
  • 610
  • +0/-0
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #55 on: November 30, 2006, 03:39:31 AM »
Code: [Select]
[root@gateway ~]# /etc/init.d/lm_sensors start
[root@gateway ~]# sensors
No sensors found!
Make sure you loaded all the kernel drivers you need.
Try sensors-detect to find out which these are.
[root@gateway ~]#


I think I have done something wrong, bt unsure what that is
Regards
M0GLJ
......................................................
I am new to SAIL SME Server v8b6 and have been using SME for many years.
I have already done some research and only ask questions if I still can't work it out.

Offline william_syd

  • ****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #56 on: November 30, 2006, 05:57:15 AM »
Quote from: "teviot"
I'm having trouble installing the sensors to my SME Server.

What I am getting is the following code but I don't understand how to put that into scripts to allow SME7ADMIN to show the data when view via the SERVER-MANAGER

[


Step 2 to 7 might help.

http://wellsi.com/sme/lms/lm_sensors.html
Regards,
William

IF I give advise.. It's only if it was me....

Offline Teviot

  • *
  • 610
  • +0/-0
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #57 on: November 30, 2006, 06:24:49 AM »
This is where I get consuffed

Code: [Select]
[root@gateway ~]# /usr/sbin/sensors-detect
# sensors-detect revision 4171 (2006-09-24 03:37:01 -0700)

This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively. It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing.

We can start with probing for (PCI) I2C or SMBus adapters.
Do you want to probe now? (YES/no):
Probing for PCI bus adapters...
Sorry, no known PCI bus adapters found.

We will now try to load each adapter module in turn.
If you have undetectable or unsupported adapters, you can have them
scanned by manually loading the modules before running this script.

We are now going to do the I2C/SMBus adapter probings. Some chips may
be double detected; we choose the one with the highest confidence
value in that case.
If you found that the adapter hung after probing a certain address,
you can specify that address to remain unprobed.

Some chips are also accessible through the ISA I/O ports. We have to
write to arbitrary I/O ports to probe them. This is usually safe though.
Yes, you do have ISA I/O ports even if you do not have any ISA slots!
Do you want to scan the ISA I/O ports? (YES/no):
Probing for `National Semiconductor LM78' at 0x290...       No
Probing for `National Semiconductor LM78-J' at 0x290...     No
Probing for `National Semiconductor LM79' at 0x290...       No
Probing for `Winbond W83781D' at 0x290...                   No
Probing for `Winbond W83782D' at 0x290...                   No
Probing for `Winbond W83627HF' at 0x290...                  No
Probing for `Silicon Integrated Systems SIS5595'...         No
Probing for `VIA VT82C686 Integrated Sensors'...            No
Probing for `VIA VT8231 Integrated Sensors'...              No
Probing for `AMD K8 thermal sensors'...                     No
Probing for `IPMI BMC KCS' at 0xca0...                      No
Probing for `IPMI BMC SMIC' at 0xca8...                     No

Some Super I/O chips may also contain sensors. We have to write to
standard I/O ports to probe them. This is usually safe.
Do you want to scan for Super I/O sensors? (YES/no):
Probing for Super-I/O at 0x2e/0x2f
Trying family `ITE'...                                      No
Trying family `National Semiconductor'...                   No
Trying family `SMSC'...                                     No
Trying family `VIA/Winbond/Fintek'...                       Yes
Found `Winbond W83627EHF/EHG Super IO Sensors'              Success!
    (address 0x290, driver `w83627ehf')
Probing for Super-I/O at 0x4e/0x4f
Trying family `ITE'...                                      No
Trying family `National Semiconductor'...                   No
Trying family `SMSC'...                                     No
Trying family `VIA/Winbond/Fintek'...                       No

Now follows a summary of the probes I have just done.
Just press ENTER to continue:

Driver `w83627ehf' (should be inserted):
  Detects correctly:
  * ISA bus address 0x0290 (Busdriver `i2c-isa')
    Chip `Winbond W83627EHF/EHG Super IO Sensors' (confidence: 9)

I will now generate the commands needed to load the required modules.
Just press ENTER to continue:

To make the sensors modules behave correctly, add these lines to
/etc/modules.conf:

#----cut here----
# I2C module options
alias char-major-89 i2c-dev
#----cut here----

To load everything that is needed, add this to some /etc/rc* file:

#----cut here----
# I2C adapter drivers
modprobe i2c-isa
# Chip drivers
# Warning: the required module w83627ehf is not currently installed
# on your system. For status of 2.6 kernel ports check
# http://www.lm-sensors.org/wiki/Devices. If driver is built
# into the kernel, or unavailable, comment out the following line.
modprobe w83627ehf
# sleep 2 # optional
/usr/bin/sensors -s # recommended
#----cut here----

If you have some drivers built into your kernel, the list above will
contain too many modules. Skip the appropriate ones! You really
should try these commands right now to make sure everything is
working properly. Monitoring programs won't work until the needed
modules are loaded.

Do you want to overwrite /etc/sysconfig/lm_sensors? (YES/no): YES


I understand that I need to use
Code: [Select]
Found `Winbond W83627EHF/EHG Super IO Sensors'              Success!
    (address 0x290, driver `w83627ehf')

and
Code: [Select]
To make the sensors modules behave correctly, add these lines to
/etc/modules.conf:

#----cut here----
# I2C module options
alias char-major-89 i2c-dev
#----cut here----

To load everything that is needed, add this to some /etc/rc* file:

#----cut here----
# I2C adapter drivers
modprobe i2c-isa
# Chip drivers
# Warning: the required module w83627ehf is not currently installed
# on your system. For status of 2.6 kernel ports check
# http://www.lm-sensors.org/wiki/Devices. If driver is built
# into the kernel, or unavailable, comment out the following line.
modprobe w83627ehf
# sleep 2 # optional
/usr/bin/sensors -s # recommended
#----cut here----


But I don't seem to get it running.

Can you tell me what to put where and explain what and why it goes there?

I have read and tried http://wellsi.com/sme/lms/lm_sensors.html steps 2 to 7 without success
Regards
M0GLJ
......................................................
I am new to SAIL SME Server v8b6 and have been using SME for many years.
I have already done some research and only ask questions if I still can't work it out.

Offline william_syd

  • ****
  • 1,608
  • +0/-0
  • Nothing to see here.
    • http://www.magicwilly.info
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #58 on: November 30, 2006, 07:27:08 AM »
I just followed that howto sometime ago and it worked sweet.

I would be concerned about...
Code: [Select]
# Warning: the required module w83627ehf is not currently installed
# on your system. For status of 2.6 kernel ports check
# http://www.lm-sensors.org/wiki/Devices. If driver is built
# into the kernel, or unavailable, comment out the following line
Regards,
William

IF I give advise.. It's only if it was me....

Offline sandoz

  • **
  • 47
  • +0/-0
[Announce] : release of smeserver-sme7admin-1.1.0
« Reply #59 on: November 30, 2006, 11:08:20 AM »
Quote


Step 2 to 7 might help.

http://wellsi.com/sme/lms/lm_sensors.html


i have done these steps, but i have no idea how to get the vt1211 driver into the kernel

Code: [Select]

# Warning: the required module vt1211 is not currently installed
# on your system. For status of 2.6 kernel ports check
# http://www.lm-sensors.org/wiki/Devices. If driver is built
# into the kernel, or unavailable, comment out the following line.
modprobe vt1211
# sleep 2 # optional
/usr/bin/sensors -s # recommended


Code: [Select]

[root@csserver ~]# /etc/init.d/lm_sensors start
Starting lm_sensors: loading module i2c-isa vt1211 No sensors found!
Make sure you loaded all the kernel drivers you need.
Try sensors-detect to find out which these are.
                                                           [FAILED]
[root@csserver ~]#

[