I'm trying to get the following program to run as root but keep getting the following message when the tie statement executes:

Object does not exist in the data store at /usr/local/lib/perl5/site_perl/5.8.0/ Apache/Session/Store/DBI.pm line 93.

The docs are sketchy, so I'm not sure what object it means. What am I missing? The code follows:
#!/usr/local/bin/perl use strict; use warnings; use DBI; use DBD::mysql; use Apache::Session::MySQL; use Apache::Session::Generate::MD5; use Apache::Session::Store::MySQL; use Data::Dumper; my $dsn = "DBI:mysql:database=$db:host=$host"; my $id = Apache::Session::Generate::MD5::generate(); my $store = new Apache::Session::Store::MySQL; print Dumper( $id, $store ); #if you want Apache::Session to open new DB handles: my %session_hash; tie %session_hash, 'Apache::Session::MySQL', $id, { DataSource => 'dbi:mysql:$db', UserName => $user, Password => $password, LockDataSource => 'dbi:mysql:$db', LockUserName => $user, LockPassword => $password, }; print Dumper( \%session_hash );
TIA

In reply to Problem using apache::session::store::mysql by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.