[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] MYSQL server gone down overnight - newbie requires help



Hi,

I had the same problem some months ago. It has something to do with the
web.cache files that are to BIG. They are generated  every night with
cron.daily.

Will de Haan from Cobalt gave me the following UN-suported solution.


The cache file is generated by analog when invoked from
/usr/local/sbin/split_logs which is invoked from
/etc/logrotate.d/apache.

You do want split_logs to sort through /var/log/httpd/access and create
all the per-site logs as it does now, but you don't want it to invoke
analog.

There are a few ways of resolving this problem.

*** The following suggestions are unsupported and are issued as free,
friendly, useful help ***

You could disable analog, the application and create a dummy in its
place:

  mv /usr/local/sbin/analog /usr/local/sbin/analog.disabled
  echo "#!/bin/sh" > /usr/local/sbin/analog
  echo "exit 0" >> /usr/local/sbin/analog
  chmod +x /usr/local/sbin/analog

Now be aware that ALL built-in site and server Cobalt statistics will no
longer generate.  The changes listed above appear to work on one of my
development RaQs.

To undo this change, should it cause a problem a few months down the
road:

  mv /usr/local/sbin/analog.disabled /usr/local/sbin/analog

...Remember that any OS Update package files that update analog will
overwrite /usr/local/sbin/analog so you'd have to reapply this hack.


	-- Will

--
Will DeHaan
Software Engineer              will.dehaan@xxxxxxx
Sun Cobalt Server Appliances.  Sun Microsystems, Inc.

-----Oorspronkelijk bericht-----
Van: cobalt-users-admin@xxxxxxxxxxxxxxx
[mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]Namens Marcus Miller @ Mobile
Fun
Verzonden: woensdag 16 januari 2002 10:48
Aan: cobalt-users@xxxxxxxxxxxxxxx
Onderwerp: [cobalt-users] MYSQL server gone down overnight - newbie
requires help


Hi all,

We have a cobalt raq4 that we are having problems with!!!!!!

I arrived at work this morning to find some of our web pages not working,
after checking that there was not a problem with the php scripts I soon
determined that there was a problem with the mysql database.

This is compounded by the fact that PHPMyAdmin will not connect and throws
out this error message:

Warning: MySQL Connection Failed: Can't connect to local MySQL server
through socket '/tmp/mysql.sock' (111) in
/home/sites/site2/users/ring1/web/phpMyAdmin/lib.inc.php on line 170
Error

We have been receiving error messages for the last few days stating that the
cobalt box is low on memory at about 5.30 in the morning when some backup
scripts are run, I have checked the messages this morning and they appear to
be somewhat worse.
Snippets as follows:

The SMTP (mail) server appears to be down.  The mail server may shut itself
down temporarily under extreme load, so you should also check the CPU load
on the server. - MAIL IS OK NOW!

subject of other messages:
RE: THE COBALT SERVER IS LOW ON MEMORY
RE: THE COBALT SERVER IS VERY LOW ON MEMORY
RE: THE CPU IS HEAVILY LOADED

Apologies for the long message, but I am fairly new to all of this and my
boss is not in this morning so i am slightly panicking!

Any help would be appreciated

Marcus Miller

-----Original Message-----
From: cobalt-users-admin@xxxxxxxxxxxxxxx
[mailto:cobalt-users-admin@xxxxxxxxxxxxxxx]On Behalf Of
cobalt-users-request@xxxxxxxxxxxxxxx
Sent: 16 January 2002 09:16
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: cobalt-users digest, Vol 1 #3919 - 18 msgs


Send cobalt-users mailing list submissions to
	cobalt-users@xxxxxxxxxxxxxxx

To subscribe or unsubscribe via the World Wide Web, visit
	http://list.cobalt.com/mailman/listinfo/cobalt-users
or, via email, send a message with subject or body 'help' to
	cobalt-users-request@xxxxxxxxxxxxxxx

You can reach the person managing the list at
	cobalt-users-admin@xxxxxxxxxxxxxxx

When replying, please edit your Subject line so it is more specific
than "Re: Contents of cobalt-users digest..."


Today's Topics:

   1. Re: deleteing old files (Parker Morse)
   2. Re: Webcalendar/ file store software. (Danny Daniels)
   3. killing mysql (Cobalt)
   4. Re: Using raqbackup.sh (cbtrussell)
   5. need help with name servers  2 RAQ's (Wayne McBryde)
   6. Re: killing mysql (Gerald Waugh)
   7. Re: need help with name servers  2 RAQ's (Gerald Waugh)
   8. Re: need help with name servers  2 RAQ's (Gerald Waugh)
   9. PMFirewall and IPChains: Traceroute Stops Working (Troy Arnold)
  10. Chilisoft on RAQ3 (Jef Hendrickx)
  11. Re: #$%@#$ RAQ2 (Jay Summers)
  12. RE: RE: Using raqbackup.sh (WEBB cite)
  13. Adaptive Firewall on Raq4 (Ronald Doblan)
  14. Ports (again...) (Bradley Caricofe)
  15. ERROR please help (Mihai Negroiu)
  16. Re: Ports (again...) (David Lucas)
  17. Re: ERROR please help (Wayne Sagar)
  18. Re: Using raqbackup.sh (Jelmer Jellema)

--__--__--

Message: 1
Date: Tue, 15 Jan 2002 12:27:04 -0500
Subject: Re: [cobalt-users] deleteing old files
From: Parker Morse <morse@xxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

Tom quoted me:
>
>> From: "Chris Demain" <cdemain@xxxxxxxxxxx>
>>> hi does anyone if there is a way to delete file out of a specified
>>> directory if they are older then  a required date
>
>> man find
>>
>> here are some interesting options (tip of the iceberg):
>> -mmin n
>> File's data was last modified n minutes ago.
>>
>> -mtime n
>> File's data was last modified n*24 hours ago.
>>
>> -name pattern
>> Base of file name (the path with the leading direc­
>> tories removed) matches shell pattern pattern.  The
>> metacharacters  (`*', `?', and `[]') do not match a
>> `.' at the start of the base  name.   To  ignore  a
>> directory  and  the files under it, use -prune; see
>> an example in the description of -path.
>>
>> -newer file
>> File was modified more recently than file.   -newer
>> is affected by -follow only if -follow comes before
>> -newer on the command line.
>>
>>
>> find . -type f --some_options | xargs rm
>
> Comparing various ways of skinning cats: I've used the following:
>
> rm -rdf $(find /path/to/ftp/ -ctime +7)
>
> to clear files older than a week in my incoming FTP directory. The flaw
here
> is that it refuses to delete directories, even though it supposedly
should.
> Perhaps I should try your way?

and added:

> do you do this maualy or do you have some sort of script which runs on its
> own

I run it as a cron job - do "man crontab" to find out how.

pjm


--__--__--

Message: 2
From: "Danny Daniels" <dcd@xxxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: Re: [cobalt-users] Webcalendar/ file store software.
Date: Tue, 15 Jan 2002 09:48:19 -0800
Reply-To: cobalt-users@xxxxxxxxxxxxxxx


> > We like to give a web calendar & file store solution for our curtomer.
> > Are anybody already doing it or tested any software. If so pl. let me
know
> > which software is the best for this features> I am looking for a
software
> > which support vitual sites & group calendaring(i.e a group of people can
> > view one group calender or schedule a meeting).
> >
Contact me off list and I would be happy to share some calendaring software
I have been working on. Its just some basic perl code.
It produces a simple calendar with daily hyper links for each day. Its very
simple. Other wise I would use http://www.calendarscript.com

-Danny
 danny@xxxxxxxxxxxxxx




--__--__--

Message: 3
From: "Cobalt" <brain_damaged@xxxxxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Date: Tue, 15 Jan 2002 13:12:48 -0500
Subject: [cobalt-users] killing mysql
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

i have tried to kill the mysql process.
i did a ps ax . i see the number is 699
I have tried kill 699. but nothing happens.
i tried as admin, as su -
and even root.

trying to stop it on its own gives me access errors for user@localhost.




--__--__--

Message: 4
From: "cbtrussell" <cbtrussell@xxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: Re: [cobalt-users] Using raqbackup.sh
Date: Tue, 15 Jan 2002 21:09:52 -0500
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

> Sounds great ! I'm using world wide backup at the moment, but
> where can I get raqbackup.sh ?

Archives?? Sheesh!!

http://www.neuhaus-internet.de/cobalt/raqbackup/


--__--__--

Message: 5
From: "Wayne McBryde" <wayne@xxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Date: Tue, 15 Jan 2002 21:27:47 -0800
Subject: [cobalt-users] need help with name servers  2 RAQ's
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

Hello all,

My question is about getting the secondary name server updated to match the
primary NS.  My primary NS is a RAQ-3i.  My secondary NS is a RAQ-4r.
I setup the 2 A records and the MX record for a domain (on the primary NS)
and it works, but I thought the secondary NS would update itself from the
primary NS.  This does not happen.  Is there a setting that I am missing or
do I need to setup the domain on both NS's

Wayne McBryde
http://mcbryde.com
http://stockcargifts.com




--__--__--

Message: 6
From: Gerald Waugh <gerald@xxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: Re: [cobalt-users] killing mysql
Date: Tue, 15 Jan 2002 21:45:00 -0500
Cc: "Cobalt" <brain_damaged@xxxxxxxxxxxxxxxxxxxx>
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

On Tuesday 15 January 2002 01:12 pm, Cobalt wrote:
> i have tried to kill the mysql process.
> i did a ps ax . i see the number is 699
> I have tried kill 699. but nothing happens.
> i tried as admin, as su -
> and even root.
>
> trying to stop it on its own gives me access errors for user@localhost.
>

try /etc/rc.d/init.d/mysql stop

--
Gerald Waugh
Registered Linux User 255245
Register at http://counter.li.org


--__--__--

Message: 7
From: Gerald Waugh <gerald@xxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: Re: [cobalt-users] need help with name servers  2 RAQ's
Date: Tue, 15 Jan 2002 22:31:12 -0500
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

On Wednesday 16 January 2002 12:27 am, Wayne McBryde wrote:
> Hello all,
>
> My question is about getting the secondary name server updated to match
the
> primary NS.  My primary NS is a RAQ-3i.  My secondary NS is a RAQ-4r.
> I setup the 2 A records and the MX record for a domain (on the primary NS)
> and it works, but I thought the secondary NS would update itself from the
> primary NS.  This does not happen.  Is there a setting that I am missing
or
> do I need to setup the domain on both NS's
>
On the slave (secondary)
Secondary Name Service for Domain
enter the name of the domain and it's ip addres
save and all that stuff.

On the master (primary) edit the SOA record for the domain (top edit icon)
add the Secondary Name Server (NS) Host Name (optional)

The primary /etc/named directory should get some files sec.domain.tld

--
Gerald Waugh
Registered Linux User 255245
Register at http://counter.li.org


--__--__--

Message: 8
From: Gerald Waugh <gerald@xxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: Re: [cobalt-users] need help with name servers  2 RAQ's
Date: Tue, 15 Jan 2002 22:50:56 -0500
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

On Tuesday 15 January 2002 10:31 pm, Gerald Waugh wrote:
> On Wednesday 16 January 2002 12:27 am, Wayne McBryde wrote:
> > Hello all,
> >
> > My question is about getting the secondary name server updated to match
> > the primary NS.  My primary NS is a RAQ-3i.  My secondary NS is a
RAQ-4r.
> > I setup the 2 A records and the MX record for a domain (on the primary
> > NS) and it works, but I thought the secondary NS would update itself
from
> > the primary NS.  This does not happen.  Is there a setting that I am
> > missing or do I need to setup the domain on both NS's
>
> On the slave (secondary)
> Secondary Name Service for Domain
> enter the name of the domain and it's ip addres
> save and all that stuff.
>
> On the master (primary) edit the SOA record for the domain (top edit icon)
> add the Secondary Name Server (NS) Host Name (optional)
>
> The primary /etc/named directory should get some files sec.domain.tld
*** WRONG ***

The SECONDARY/SLAVE /etc/named directory should get some files
sec.domain.tld

--
Gerald Waugh
Registered Linux User 255245
Register at http://counter.li.org


--__--__--

Message: 9
From: "Troy Arnold" <cobalt@xxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Date: Tue, 15 Jan 2002 10:36:44 -0800
Organization: websetters, inc.
Subject: [cobalt-users] PMFirewall and IPChains: Traceroute Stops Working
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

Hi all. Thanks to Gerald I got my firewall rules working great on all
subnets except for one problem. Before starting the firewall traceroute runs
fine and resolves the host. When I start the firewall, everything functions
properly (http, ftp, email, etc) except when I run a traceroute it can no
longer find the route to the ip. Trace route stops right before or at my
router. When I went through the install script for pmfirewall I made sure
DNS was open to all on port 53. Is this the issue? Not sure what setting
would cause this problem. Any ideas where to look? Should I post my rules? I
have PortSentry running already and am so close to finishing my ruleset with
IPChains. Any help would be greatly appreciated! Thanks in advance.

Best regards,
Troy Arnold
websetters, inc.


--__--__--

Message: 10
From: "Jef Hendrickx" <jef@xxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Date: Tue, 15 Jan 2002 20:17:19 +0100
Subject: [cobalt-users] Chilisoft on RAQ3
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

Hello,

One of my clients wants to use asp. My question: I've recompiled apache with
php 4.1.1 and FP2002 (a mistake I know) but can I install chiliasp 3.6
without any problems?


Jef


--__--__--

Message: 11
Date: Tue, 15 Jan 2002 12:18:46 -0600
Subject: Re: [cobalt-users] #$%@#$ RAQ2
From: Jay Summers <jay@xxxxxxxxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

> I had php 4.1.1 put on this raq2. Mysql 3.22.21 is on it. I bought this
> thing used so I don't know if mysql came with the box or not. So I am not
> sure of any passwords or nothing for the MYSQL.
> From what I have read sounds like cobalt didn't put crap on it. Anyway.

MySQL doesn't come on the Raqs so it was installed by whoever owned it. If
you don't know any of the passwords, there is a way to reset them. Found it
in the archives.

http://list.cobalt.com/pipermail/cobalt-users/2000-August/018096.html

> I d/l phpMyAdmin -2.2.3 and ftped it up as admin. I logged into the raq2
> su - and untarred it to my main home directory. In the directory
> /home/sites/www.florida-wireless.com/web is were it went.
>
> I edited the config.inc.php and when I go to the url I get a blank screen
> for the most part with the words cvs,list and changelog highlighted and a
> language drop down box with nothing in it and go next to it.
>
> I checked the permissions and it said 52400 24067 so thinking that was the
> issue I did a
> chown -R admin.home and guess what still not working. Tried nobody.home .
> tried thait.home (the user i created for the site sometime ago and who
makes
> the webpages).
>
> I went thru the phpmyadmin faq and tried changed cfgobzip to false. that
did
> not work.
>
> So what the hell is up ? I have gone thru lists and kb and forums and all.

You say that you had PHP 4.1.1 installed for you. Did they configure it with
MySQL? You probably need to take a look at the configurations they did and
see if it has MySQL support compiled in. Make a file called phpinfo.php and
put this in it:

<?php
   phpinfo();
?>

Pull the phpinfo.php file up in a browser and look at the output to see if
it has MySQL support.

HTH,
j

--
http://www.bizmanuals.com


--__--__--

Message: 12
From: "WEBB cite" <webbcite@xxxxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: RE: [cobalt-users] RE: Using raqbackup.sh
Date: Wed, 16 Jan 2002 04:53:07 +0000
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

>    That is, does the CMU actually make life any easier than restoring from
>straight tar files, especially considering I'll _still_ need to script the
>backup of specific changes made outside the GUI (/etc/mail, for example)?
>
>          Charlie (who, remember, is comfortable in linux, and not so
>thrilled
>                    with working around the limitations of the Cobalt GUI)

I used to do a tar/gzip backup solution before moving to the raqbackup.sh
script.  I never had to restore from tar files, but I knew it would be a
little tricky.  Especially getting the ownerships, permissions and making
sure that the site##'s are correct.

I really like the fact that it is using the CMU.  It makes life very easy.
You just use it to do your restore and it takes care of all the rest.  The
latest CMU 2.27 seems to be much more solid than previous versions.  The
only issues I found were with user aliases...but getting the sites and users
up was most important to me.  Cleaning up some aliases seemed like a small
price to pay.



_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com


--__--__--

Message: 13
Date: Wed, 16 Jan 2002 13:57:29 +0800
To: cobalt-users@xxxxxxxxxxxxxxx
From: Ronald Doblan <dobz@xxxxxxxxxx>
Subject: [cobalt-users] Adaptive Firewall on Raq4
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

Hey guys!

just an intriguing question.  Can I install Adaptive Firewall on Raq 4? If
not, what can I install as an alternative Firewall, if there is such.

Thanks in Advance.



Sincerely yours,



Ronald Doblan
Technical Staff

Tridel Technologies, Inc.
7th Floor Hanston Building
Emerald Ave., Ortigas Center
Pasig City

Tel: (632) 634-5140 to 43
Fax: (632) 634-5139



--__--__--

Message: 14
Date: Tue, 15 Jan 2002 21:55:56 -0800 (PST)
From: Bradley Caricofe <bcaricofe@xxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: [cobalt-users] Ports (again...)
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

Can anyone tell me what ports 445, 137, 138 & 139 are used for and how to
disable them?  I'm just trying to slim down a new raq3 and can't figure
out the use or importance of these ports.  Every reference I've found to
445 relates to win2k and xp machines.  I've never know what the other 3
are for although I've seen them open on a lot of window and linux machines
I've played with.

thanks,
Brad

__________________________________________________
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail!
http://promo.yahoo.com/videomail/


--__--__--

Message: 15
From: "Mihai Negroiu" <negroiu@xxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Date: Wed, 16 Jan 2002 02:34:25 +0200
Subject: [cobalt-users] ERROR please help
Reply-To: cobalt-users@xxxxxxxxxxxxxxx


Hi everybody,

I restarted my Raq4 and I got a en error on the Cobalt Gui. I looked in
the logs and this is what I found out:

Jan 16 02:21:17 ns kernel: portmap: RPC call returned error 111
Jan 16 02:21:17 ns kernel: RPC: task of released request still queued!
Jan 16 02:21:17 ns kernel: RPC: (task is on xprt_pending)
Jan 16 02:21:18 ns kernel: portmap: RPC call returned error 111
Jan 16 02:21:18 ns kernel: RPC: task of released request still queued!
Jan 16 02:21:18 ns kernel: RPC: (task is on xprt_pending)
Jan 16 02:21:18 ns kernel: lockd_up: makesock failed, error=-111
Jan 16 02:21:18 ns kernel: portmap: RPC call returned error 111
Jan 16 02:21:18 ns kernel: RPC: task of released request still queued!
Jan 16 02:21:18 ns kernel: RPC: (task is on xprt_pending)


Can somebody help me and tell me what it is? I am new (very new) to
Linux.

Thanks,

Mihai



_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--__--__--

Message: 16
Date: Wed, 16 Jan 2002 00:29:27 -0600
To: cobalt-users@xxxxxxxxxxxxxxx
From: David Lucas <david@xxxxxxxxxxxxxxxx>
Subject: Re: [cobalt-users] Ports (again...)
Cc: Bradley Caricofe <bcaricofe@xxxxxxxxx>
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

At 11:55 PM 1/15/2002, you wrote:
>Can anyone tell me what ports 445, 137, 138 & 139 are used for and how to
>disable them?  I'm just trying to slim down a new raq3 and can't figure
>out the use or importance of these ports.  Every reference I've found to
>445 relates to win2k and xp machines.  I've never know what the other 3
>are for although I've seen them open on a lot of window and linux machines
>I've played with.
>
>thanks,
>Brad

http://www.iana.org/assignments/port-numbers



--__--__--

Message: 17
From: "Wayne Sagar" <shortfork@xxxxxxxxxxx>
To: cobalt-users@xxxxxxxxxxxxxxx
Subject: Re: [cobalt-users] ERROR please help
Date: Tue, 15 Jan 2002 22:49:06 -0800
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

>I restarted my Raq4 and I got a en error on the Cobalt Gui. I looked in
>the logs and this is what I found out:

Not an expert here, but both my current 4i and old 3 had similar messages at
boot. I don't think it's a problem you need to worry about and likely is
common on the 3's and 4's for some unknown reason.

WS

_________________________________________________________________
Join the world?s largest e-mail service with MSN Hotmail.
http://www.hotmail.com


--__--__--

Message: 18
From: "Jelmer Jellema" <cobalt@xxxxxxxxxxxxxxx>
To: <cobalt-users@xxxxxxxxxxxxxxx>
Subject: Re: [cobalt-users] Using raqbackup.sh
Date: Wed, 16 Jan 2002 09:50:37 +0100
Organization: Spin in het Web (www.spininhetweb.nl)
Reply-To: cobalt-users@xxxxxxxxxxxxxxx

> I run it nightly and have had to restore two seperate systems.  One was
mine
> with about 5 large sites and 10 users.  The other was a customer server
with
> 150 sites and over 300 users.  Both used DNS and MySQL databases as well.
>
> Both were back up and running in less than 4 hours.  The part that takes
the
> most time is getting the RAQ updates installed.
>
> My personal opinion...IT'S GREAT!

I'm a newbie (not at unix admin but at cobalt, I wil get my first RaQ in an
hour). I thought there was supposed to be a cron-like backup util in the
administratorinterface. Is this something different? And why not use that
one?

Thanks,
Jelmer

-----------------------------------------------------------------
  Jelmer Jellema - Spin in het Web
  www.spininhetweb.nl
  Spin in het Web: Alle Touwtjes In Handen
-----------------------------------------------------------------

Spin in het Web is de producent van:
www.visinhetnet.nl: Niet Het Laatste Nieuws



--__--__--

_______________________________________________
cobalt-users mailing list
cobalt-users@xxxxxxxxxxxxxxx
http://list.cobalt.com/mailman/listinfo/cobalt-users


End of cobalt-users Digest



_______________________________________________
cobalt-users mailing list
cobalt-users@xxxxxxxxxxxxxxx
To Subscribe or Unsubscribe, please go to:
http://list.cobalt.com/mailman/listinfo/cobalt-users