From: Shawn <sg...@op...> - 2006-04-30 03:31:38
|
Sorry for the blatant request, but the other message looking for an accountant in Toronto got me thinking... So, I'm hoping there might be an account on the mailing list in Calgary, Alberta who I might be able to speak with by phone. If you are in the area, an interested, please contact me off list. Thanks. Now back to our regularly scheduled programming... :) Shawn |
From: Patrick R. <pa...@pa...> - 2006-04-30 13:49:06
|
On April 29, 2006 11:31 pm, Shawn wrote: > Sorry for the blatant request, but the other message looking for an > accountant in Toronto got me thinking... > > So, I'm hoping there might be an account on the mailing list in Calgary, > Alberta who I might be able to speak with by phone. If you are in the > area, an interested, please contact me off list. Thanks. Isn't Deiter himself out that way? I thought he was in Edmonton. It isn't that long a drive between Edmonton and Calgary. -- Patrick Rea Toronto, ON, CA http://www.patrickrea.org Ask me how to end your virus problems. Today! |
From: Shawn <sg...@op...> - 2006-04-30 19:31:24
|
On Sunday 30 April 2006 07:48, Patrick Rea wrote: > Isn't Deiter himself out that way? I thought he was in Edmonton. It isn't > that long a drive between Edmonton and Calgary. Yep, it's only 3 hours from Edmonton to Calgary. And it is a nice drive. But I'm looking for an accountant who can work with SL to help with setting up books and processes, and to help out at tax time. So someone local would be a better fit. Shawn |
From: Dr E. L. <el...@li...> - 2006-04-30 20:34:56
|
I don't understand this, really. Unless I am mistaken, doesn't have CA GIFI? If so there is nothing really to set up, use the CA tables. My auditor has no clue what software I am using, other than that he likes what I bring him. So why does one need an accountant who knows SL? el on 4/30/06 9:31 PM Shawn said the following: > On Sunday 30 April 2006 07:48, Patrick Rea wrote: >> Isn't Deiter himself out that way? I thought he was in Edmonton. It isn't >> that long a drive between Edmonton and Calgary. > > Yep, it's only 3 hours from Edmonton to Calgary. And it is a nice drive. But > I'm looking for an accountant who can work with SL to help with setting up > books and processes, and to help out at tax time. So someone local would be > a better fit. > > Shawn > > > > ------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Shawn <sg...@op...> - 2006-05-01 05:54:52
|
On Sunday 30 April 2006 13:32, Dr Eberhard Lisse wrote: > I don't understand this, really. > > Unless I am mistaken, doesn't have CA GIFI? If so there is nothing > really to set up, use the CA tables. > > My auditor has no clue what software I am using, other than that he > likes what I bring him. > > So why does one need an accountant who knows SL? > > el Mainly because I am NOT an accountant, or book keeper. I am a computer consultant/programmer/network engineer. I did try to do my books myself, but I've come to the realization, I do not know the "right" way to do it, nor have the time to learn it on my own. But, I do like SL, and the time card system (which is perfect for my business), and can use SL- once I've had an experienced accountant/book-keeper help get me started the "right" way, and to understand the accounting concepts/procedures. In the mean time, I have last year's books that are in varying states of entry - which I again do not have time to do myself (I'm expecting the tax hit, but it won't be too bad). So I'm also interested in a bookkeeper who can take care of this part for me, and an accountant to help get the most out of my taxes. (though I do understand the accountant in this case does not need to know SL). The best possible outcome would be to find a single accountant who could handle these roles for me. LOL.. I think the real telling point is that I had to read your first paragraph 3 times before I understood what you were saying. Not due to language or accent issues, but due to the fact that I have only a very very vague idea what GIFI is and how it releates to my books. (and yes, my books have been set up with the Canadian tables.. That was easy as I have a thorough understanding of databases. <grins>) I'm still looking though, any leads would be appreciated - off list though. Shawn |
From: ATM L. <atm...@km...> - 2006-05-01 13:38:39
|
I have about a month old backup, however I have yesterdays data on a "mostly failed" hard drive. Short version of the story is after looking at the "Critical Updates are available" for a few weeks, I decided to click the button on my SME Server... That was the last I seen of it other than thousands of missing files, and Runlevel 7, and nothing to do, and issues with inodes... (Ok, getting into the longer story) In any case, although I have not tried yet (other than with Knoppix, and that did not work either) I think I might be able to mount the drive in a working system and copy the sql-ledger data over... What am I looking for, how can I do it, I suspect I am somehow getting the postgresql data somehow...?? Any input now would be great. Thanks, |
From: ATM L. <atm...@km...> - 2006-05-01 15:51:58
|
While reinstalling (see other post) Everything seems to go fairly smooth till this... su - postgres -c "createuser -a -d sql-ledger" createuser: could not connect to database template1: FATAL: missing or erroneous pg_hba.conf file HINT: See server log for details. This is my pg.hba.conf file below: # PostgreSQL Client Authentication Configuration File # =================================================== # # Refer to the PostgreSQL Administrator's Guide, chapter "Client # Authentication" for a complete description. A short synopsis # follows. # # This file controls: which hosts are allowed to connect, how clients # are authenticated, which PostgreSQL user names they can use, which # databases they can access. Records take one of seven forms: # # local DATABASE USER METHOD [OPTION] # host DATABASE USER IP-ADDRESS IP-MASK METHOD [OPTION] # hostssl DATABASE USER IP-ADDRESS IP-MASK METHOD [OPTION] # hostnossl DATABASE USER IP-ADDRESS IP-MASK METHOD [OPTION] # host DATABASE USER IP-ADDRESS/CIDR-MASK METHOD [OPTION] # hostssl DATABASE USER IP-ADDRESS/CIDR-MASK METHOD [OPTION] # hostnossl DATABASE USER IP-ADDRESS/CIDR-MASK METHOD [OPTION] # # (The uppercase quantities should be replaced by actual values.) # The first field is the connection type: "local" is a Unix-domain socket, # "host" is either a plain or SSL-encrypted TCP/IP socket, "hostssl" is an # SSL-encrypted TCP/IP socket, and "hostnossl" is a plain TCP/IP socket. # DATABASE can be "all", "sameuser", "samegroup", a database name (or # a comma-separated list thereof), or a file name prefixed with "@". # USER can be "all", an actual user name or a group name prefixed with # "+" or a list containing either. IP-ADDRESS and IP-MASK specify the # set of hosts the record matches. CIDR-MASK is an integer between 0 # and 32 (IPv6) or 128(IPv6) inclusive, that specifies the number of # significant bits in the mask, so an IPv4 CIDR-MASK of 8 is equivalent # to an IP-MASK of 255.0.0.0, and an IPv6 CIDR-MASK of 64 is equivalent # to an IP-MASK of ffff:ffff:ffff:ffff::. METHOD can be "trust", "reject", # "md5", "crypt", "password", "krb4", "krb5", "ident", or "pam". Note # that "password" uses clear-text passwords; "md5" is preferred for # encrypted passwords. OPTION is the ident map or the name of the PAM # service. # # This file is read on server startup and when the postmaster receives # a SIGHUP signal. If you edit the file on a running system, you have # to SIGHUP the postmaster for the changes to take effect, or use # "pg_ctl reload". # Put your actual configuration here # ---------------------------------- # # CAUTION: The default configuration allows any local user to connect # using any PostgreSQL user name, including the superuser, over either # Unix-domain sockets or TCP/IP. If you are on a multiple-user # machine, the default configuration is probably too liberal for you. # Change it to use something other than "trust" authentication. # # If you want to allow non-local connections, you need to add more# "+" or a list containing either. IP-ADDRESS and IP-MASK specify the # set of hosts the record matches. CIDR-MASK is an integer between 0 # and 32 (IPv6) or 128(IPv6) inclusive, that specifies the number of # significant bits in the mask, so an IPv4 CIDR-MASK of 8 is equivalent # to an IP-MASK of 255.0.0.0, and an IPv6 CIDR-MASK of 64 is equivalent # to an IP-MASK of ffff:ffff:ffff:ffff::. METHOD can be "trust", "reject", # "md5", "crypt", "password", "krb4", "krb5", "ident", or "pam". Note # that "password" uses clear-text passwords; "md5" is preferred for # encrypted passwords. OPTION is the ident map or the name of the PAM # service. # # This file is read on server startup and when the postmaster receives # a SIGHUP signal. If you edit the file on a running system, you have # to SIGHUP the postmaster for the changes to take effect, or use # "pg_ctl reload". # Put your actual configuration here # ---------------------------------- # # CAUTION: The default configuration allows any local user to connect # using any PostgreSQL user name, including the superuser, over either # Unix-domain sockets or TCP/IP. If you are on a multiple-user # machine, the default configuration is probably too liberal for you. # Change it to use something other than "trust" authentication. # # If you want to allow non-local connections, you need to add more # "host" records. Also, remember TCP/IP connections are only enabled # if you enable "tcpip_socket" in postgresql.conf. # TYPE DATABASE USER IP-ADDRESS IP-MASK METHOD # IPv4-style local connections: #host all all 127.0.0.1 255.255.255.255 trust # IPv6-style local connections: #host all all ::1 ffff:ffff:ffff:ffff:ffff:ffff:ffff:ffff trust # Using sockets credentials for improved security. Not available everywhere, # but works on Linux, *BSD (and probably some others) #local all all ident sameuser host all all echo -n "Enter the IP mask of this server (probably 255.255.255.0) " trust host all all 0.0.0.0 255.255.255.255 reject host all all echo -n "Enter the IP mask of this server (probably 255.255.255.0) " trust host all all 0.0.0.0 255.255.255.255 reject host all all echo -n "Enter the IP mask of this server (probably 255.255.255.0) " trust host all all 192.168.0.254 255.255.255.0 trust host all all 0.0.0.0 255.255.255.255 reject local all all trust host all all 127.0.0.1 255.255.255.255 trust |
From: Jason S. <ja...@de...> - 2006-05-01 19:55:15
|
On Monday 01 May 2006 11:50, ATM Logic wrote: > While reinstalling (see other post) > > Everything seems to go fairly smooth till this... > > su - postgres -c "createuser -a -d sql-ledger" > createuser: could not connect to database template1: FATAL: missing or > erroneous pg_hba.conf file > HINT: See server log for details. > Did you follow the HowTo? http://contribs.org/modules/phpwiki/index.php/How%20to%20install%20SQL-Ledger%20on%20SME%207.0 I have used this method many times without issue on SME7. -- Jason Shein Director of Networking, Operations and Systems Detached Networks ja...@de... ( 905 ) - 876 - 4158 Voice ( 905 ) - 876 - 5817 Mobile http://www.detachednetworks.ca On-Site Computer Services - Available 24/7 Earn your service for FREE! Ask about our referral program. |
From: ATM L. <atm...@km...> - 2006-05-02 00:54:26
|
Yes, this is the how to I used... However... I know the script is where things got a little odd... I know things fell off the rail on the how to... As "clearly stated" in the how to, I think my copy paste did me in with the whole >> on the same line thing... How do 'you' get the script from the page to your system? Myself I did a butchered job of copy, start pico, paste, save, ./script, oops, make runable, ./script, big load of errors..., ok, copy line, paste, copy line, paste... Etc etc... Welcome to my nightmare... As mentioned in other post that got sent direct to Gordon (oops... Really not on my 'A' Game) I totally hosed my system (Two days before a highly involved project) and have had to start from scratch... On a good day.., I get by just fine however, I am really behind the eight ball on this one, and at my witts end... Even if I get SL back up, I am still done, all my data is on a drive that ... Just does not want to play fair anymore... Anyhow... Any and all help is good. Thanks, -----Original Message----- From: sql...@li... [mailto:sql...@li...] On Behalf Of Jason Shein Sent: May 1, 2006 2:55 PM To: sql...@li... Subject: Re: [SL] While installing on SME 7.rc2 I get FATAL: missing or erroneous pg_hba.conf file On Monday 01 May 2006 11:50, ATM Logic wrote: > While reinstalling (see other post) > > Everything seems to go fairly smooth till this... > > su - postgres -c "createuser -a -d sql-ledger" > createuser: could not connect to database template1: FATAL: missing > or erroneous pg_hba.conf file > HINT: See server log for details. > Did you follow the HowTo? http://contribs.org/modules/phpwiki/index.php/How%20to%20install%20SQL-Ledge r%20on%20SME%207.0 I have used this method many times without issue on SME7. -- Jason Shein Director of Networking, Operations and Systems Detached Networks ja...@de... ( 905 ) - 876 - 4158 Voice ( 905 ) - 876 - 5817 Mobile http://www.detachednetworks.ca On-Site Computer Services - Available 24/7 Earn your service for FREE! Ask about our referral program. ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sql-ledger-users mailing list sql...@li... https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: ATM L. <atm...@km...> - 2006-05-02 02:07:43
|
Ok... Found the issue... Imported my Month old backup... Life is so-so... Can anyone point me in a good direction to go to resolve the problems with my old drive? For those of you that may be using SME 7.xx, all I did was click the update button, and my life started to suck... What I am left with is a drive that is "bootable", and I can see my files, however, the drive is stuck as read only, and I cannot mount any other file systems, (ext2-3, no FTP, No Ethernet, no floppy, no nothin that lets me get the data out) I have fsck'd the drive, all is good, Even Knoppix left my hang'in (cannot mount, unknown file system, yet will mount hda1...) Who knows what happened? Tried super block fixes, even loaded the drive into a Windows Box (figured that would scare it back inline...) using e2fsifs yet no joy... It just totally pushes me right to the edge that I can use Midnight Commander... Go through every single stinking file on the drive and all is good.... Yet its totally useless to me... Seems no way to get it from there to anything else... Anyone have any tips? Even tried cloneing the drive and got nowhere (some divide by zero error) Yes, I can get WAY more specific on the errors if someone has the time to help... A good start would be "read only filesystem (30)" if someone knows what is up with that, and how to fix it... That would be a great start. |
From: Devlyn D. <de...@ya...> - 2006-05-02 04:39:38
|
--- ATM Logic <atm...@km...> wrote: > > For those of you that may be using SME 7.xx, all I > did was click the update > button, and my life started to suck... Before you updated, did you issue the following command?: kudzu -q As far as I know, there is no warning on the Server Manager screen to do this, but there are several warnings by the developers to do so on the contribs.org website. Not sure if that's what caused you problem or not. -Devlyn __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Devlyn D. <de...@ya...> - 2006-05-02 05:05:54
|
--- Devlyn Davis <de...@ya...> wrote: > Before you updated, did you issue the following > command?: > > kudzu -q > > As far as I know, there is no warning on the Server > Manager screen to do this, but there are several > warnings by the developers to do so on the > contribs.org website. Not sure if that's what > caused > you problem or not. > Forgot to mention that the workaround is here: http://contribs.org/modules/phpwiki/index.php/DevList __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Devlyn D. <de...@ya...> - 2006-05-02 05:14:11
|
> Forgot to mention that the workaround is here: > > http://contribs.org/modules/phpwiki/index.php/DevList Crap. The contribs.org website uses iframes so the above link just takes you to the mailing list. Here is a direct link to the bugzilla work-around for the kudzu deal: http://www.contribs.org/bugzilla/show_bug.cgi?id=698 Look for comment #35. -Devlyn __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: ATM L. <atm...@km...> - 2006-05-02 15:03:41
|
Thanks, I did the work around... However it did not resolve the problem... However... IF I "DO" start the network now, and it works... I may be able to copy my Sql-Ledger data out...?? Trouble is, I am 100% certain that postgress is not starting... So I am not sure how to pull the data out unless its also a static file somewhere?? Thanks for the info, although it did not resolve my problem, it gave me a little bit more hope :) Speaking of hope... You don't happen to know where all the info for the Port forwarding is held do you? -----Original Message----- From: sql...@li... [mailto:sql...@li...] On Behalf Of Devlyn Davis Sent: May 2, 2006 12:14 AM To: sql...@li... Subject: RE: [SL] While installing on SME 7.rc2 I get FATAL: missing or erroneous pg_hba.conf file - SOLVED, thanks > Forgot to mention that the workaround is here: > > http://contribs.org/modules/phpwiki/index.php/DevList Crap. The contribs.org website uses iframes so the above link just takes you to the mailing list. Here is a direct link to the bugzilla work-around for the kudzu deal: http://www.contribs.org/bugzilla/show_bug.cgi?id=698 Look for comment #35. -Devlyn __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sql-ledger-users mailing list sql...@li... https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Jason S. <ja...@de...> - 2006-05-02 15:22:09
|
On Tuesday 02 May 2006 11:01, ATM Logic wrote: > Thanks, I did the work around... However it did not resolve the problem... > However... IF I "DO" start the network now, and it works... I may be able > to copy my Sql-Ledger data out...?? > > Trouble is, I am 100% certain that postgress is not starting... So I am not > sure how to pull the data out unless its also a static file somewhere?? > > Thanks for the info, although it did not resolve my problem, it gave me a > little bit more hope :) > Speaking of hope... You don't happen to know where all the info for the > Port forwarding is held do you? > > There is some good information here about postgresql recovery http://www.hjackson.org/blog/archives/2004/12/postgresql_data.html As far as I know, SME stores the files in /var/lib/pgsql/ -- Jason Shein Director of Networking, Operations and Systems Detached Networks ja...@de... ( 905 ) - 876 - 4158 Voice ( 905 ) - 876 - 5817 Mobile http://www.detachednetworks.ca On-Site Computer Services - Available 24/7 Earn your service for FREE! Ask about our referral program. |
From: Jason S. <ja...@de...> - 2006-05-02 02:12:07
|
On Monday 01 May 2006 20:52, ATM Logic wrote: > Yes, this is the how to I used... However... I know the script is where > things got a little odd... > > I know things fell off the rail on the how to... As "clearly stated" > in the how to, I think my copy paste did me in with the whole >> on the > same line thing... > > How do 'you' get the script from the page to your system? I am using SSH into the system from a KDE desktop. Cut & paste worked for me using nano for an editor. > > Myself I did a butchered job of copy, start pico, paste, save, > ./script, oops, make runable, ./script, big load of errors..., ok, copy > line, paste, copy line, paste... Etc etc... Welcome to my nightmare... > > As mentioned in other post that got sent direct to Gordon (oops... Really > not on my 'A' Game) I totally hosed my system (Two days before a highly > involved project) and have had to start from scratch... On a good day.., I > get by just fine however, I am really behind the eight ball on this one, > and at my witts end... > > Even if I get SL back up, I am still done, all my data is on a drive > that ... Just does not want to play fair anymore... Where are you located? If you are in southern Ontario, our speciality is data recovery. Check our website for details. > > -----Original Message----- > From: sql...@li... > [mailto:sql...@li...] On Behalf Of Jason > Shein > Sent: May 1, 2006 2:55 PM > To: sql...@li... > Subject: Re: [SL] While installing on SME 7.rc2 I get FATAL: missing or > erroneous pg_hba.conf file > > On Monday 01 May 2006 11:50, ATM Logic wrote: > > While reinstalling (see other post) > > > > Everything seems to go fairly smooth till this... > > > > su - postgres -c "createuser -a -d sql-ledger" > > createuser: could not connect to database template1: FATAL: missing > > or erroneous pg_hba.conf file > > HINT: See server log for details. > > Did you follow the HowTo? > http://contribs.org/modules/phpwiki/index.php/How%20to%20install%20SQL-Ledg >e r%20on%20SME%207.0 > > I have used this method many times without issue on SME7. > > -- -- Jason Shein Director of Networking, Operations and Systems Detached Networks ja...@de... ( 905 ) - 876 - 4158 Voice ( 905 ) - 876 - 5817 Mobile http://www.detachednetworks.ca On-Site Computer Services - Available 24/7 Earn your service for FREE! Ask about our referral program. |
From: ATM L. <atm...@km...> - 2006-05-02 02:31:24
|
Well, I did get it to go, in the end, it was the wrapping and the >> that was messing things up for me... But with This going down, and a HUGE time crunch on a project I am in, I am not really on my 'A' Game... As a matter of fact, I am not even sure what the game is.. Just that I am not winning... > How do 'you' get the script from the page to your system? I am using SSH into the system from a KDE desktop. Cut & paste worked for me using nano for an editor. > Even if I get SL back up, I am still done, all my data is on a drive > that ... Just does not want to play fair anymore... Where are you located? If you are in southern Ontario, our speciality is data recovery. Check our website for details. Northern Ontario... Very Northern, about 1/2 hour from Manitoba. Good to know that your in the Data Recovery biz, I don't think I would send any of my own things down, as we "normally" keep good backups (as it is, I have 92% of this system backed up in Duplicate or better... However it's the wife's job to click the backup button, and... Well... Good thing I clicked the button a Month and a half ago... Saddly I don't fully have my head around SQL well enough to sort out how to get the last bit out of the 'read only filesystem (30)' Drive that will not mount for me with anything I throw at it... Thanks, for the help. I was SSH to a remote box, using pico, did a little edit, recopy, repaste, and all was good... > > -----Original Message----- > From: sql...@li... > [mailto:sql...@li...] On Behalf Of Jason > Shein > Sent: May 1, 2006 2:55 PM > To: sql...@li... > Subject: Re: [SL] While installing on SME 7.rc2 I get FATAL: missing or > erroneous pg_hba.conf file > > On Monday 01 May 2006 11:50, ATM Logic wrote: > > While reinstalling (see other post) > > > > Everything seems to go fairly smooth till this... > > > > su - postgres -c "createuser -a -d sql-ledger" > > createuser: could not connect to database template1: FATAL: missing > > or erroneous pg_hba.conf file > > HINT: See server log for details. > > Did you follow the HowTo? > http://contribs.org/modules/phpwiki/index.php/How%20to%20install%20SQL-Ledg >e r%20on%20SME%207.0 > > I have used this method many times without issue on SME7. > > -- -- Jason Shein Director of Networking, Operations and Systems Detached Networks ja...@de... ( 905 ) - 876 - 4158 Voice ( 905 ) - 876 - 5817 Mobile http://www.detachednetworks.ca On-Site Computer Services - Available 24/7 Earn your service for FREE! Ask about our referral program. ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sql-ledger-users mailing list sql...@li... https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Paul T. <pt...@wa...> - 2006-05-02 05:14:24
|
If the data is readable, I suggest either a local or remote login on the SQL-ledger login and then do a system backup to file. Copy to USB stick, format silly HDD and re-install a Linux system, on a new HDD if needed. I have succesfully re-created complete data from a USB stick backup to a newly installed system, so it can be done. Even from 2.4.x to the current version with the 2.4.x version plus update scripts ;-) If that does not help, copy data in sql-ledger dir plus subdirs to say USB stick, use new linux install (any major distro) Then do a chown -hR or something similar to regain read-write rights and work from there. Reminds me, Backup not found. (A)bort, (R)etry, (P)anic -----Oorspronkelijk bericht----- Van: sql...@li... [mailto:sql...@li...] Namens ATM Logic Verzonden: Tuesday, May 02, 2006 4:30 AM Aan: sql...@li... Onderwerp: RE: [SL] While installing on SME 7.rc2 I get FATAL: missing or erroneous pg_hba.conf file Well, I did get it to go, in the end, it was the wrapping and the >> that was messing things up for me... But with This going down, and a HUGE time crunch on a project I am in, I am not really on my 'A' Game... As a matter of fact, I am not even sure what the game is.. Just that I am not winning... > How do 'you' get the script from the page to your system? I am using SSH into the system from a KDE desktop. Cut & paste worked for me using nano for an editor. > Even if I get SL back up, I am still done, all my data is on a drive > that ... Just does not want to play fair anymore... Where are you located? If you are in southern Ontario, our speciality is data recovery. Check our website for details. Northern Ontario... Very Northern, about 1/2 hour from Manitoba. Good to know that your in the Data Recovery biz, I don't think I would send any of my own things down, as we "normally" keep good backups (as it is, I have 92% of this system backed up in Duplicate or better... However it's the wife's job to click the backup button, and... Well... Good thing I clicked the button a Month and a half ago... Saddly I don't fully have my head around SQL well enough to sort out how to get the last bit out of the 'read only filesystem (30)' Drive that will not mount for me with anything I throw at it... Thanks, for the help. I was SSH to a remote box, using pico, did a little edit, recopy, repaste, and all was good... > > -----Original Message----- > From: sql...@li... > [mailto:sql...@li...] On Behalf Of > Jason Shein > Sent: May 1, 2006 2:55 PM > To: sql...@li... > Subject: Re: [SL] While installing on SME 7.rc2 I get FATAL: missing > or erroneous pg_hba.conf file > > On Monday 01 May 2006 11:50, ATM Logic wrote: > > While reinstalling (see other post) > > > > Everything seems to go fairly smooth till this... > > > > su - postgres -c "createuser -a -d sql-ledger" > > createuser: could not connect to database template1: FATAL: missing > > or erroneous pg_hba.conf file > > HINT: See server log for details. > > Did you follow the HowTo? > http://contribs.org/modules/phpwiki/index.php/How%20to%20install%20SQL-L edg >e r%20on%20SME%207.0 > > I have used this method many times without issue on SME7. > > -- -- Jason Shein Director of Networking, Operations and Systems Detached Networks ja...@de... ( 905 ) - 876 - 4158 Voice ( 905 ) - 876 - 5817 Mobile http://www.detachednetworks.ca On-Site Computer Services - Available 24/7 Earn your service for FREE! Ask about our referral program. ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sql-ledger-users mailing list sql...@li... https://lists.sourceforge.net/lists/listinfo/sql-ledger-users ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sql-ledger-users mailing list sql...@li... https://lists.sourceforge.net/lists/listinfo/sql-ledger-users -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.1.385 / Virus Database: 268.5.1/327 - Release Date: 4/28/2006 |
From: ATM L. <atm...@km...> - 2006-05-02 14:39:19
|
The problem is, it is a linux distro, however, its totally messed up, I only have console access, and it will not let me mount anything... I have no Network, I even threw in a second hard drive formated ext3 and I can "see" it, but I cannot mount it. As a matter of fact it looks like although the floppy is listed in the mnt/ folder saddly I may not be able to write to it either... Yes, I agree totally on the backup not found... At least I had one from a Month and a Half ago... Now I have shown the wife how to backup our accounting system she has backed it up twice in the last hour :) If the data is readable, I suggest either a local or remote login on the SQL-ledger login and then do a system backup to file. Copy to USB stick, format silly HDD and re-install a Linux system, on a new HDD if needed. I have succesfully re-created complete data from a USB stick backup to a newly installed system, so it can be done. Even from 2.4.x to the current version with the 2.4.x version plus update scripts ;-) If that does not help, copy data in sql-ledger dir plus subdirs to say USB stick, use new linux install (any major distro) Then do a chown -hR or something similar to regain read-write rights and work from there. Reminds me, Backup not found. (A)bort, (R)etry, (P)anic -----Oorspronkelijk bericht----- Van: sql...@li... [mailto:sql...@li...] Namens ATM Logic Verzonden: Tuesday, May 02, 2006 4:30 AM Aan: sql...@li... Onderwerp: RE: [SL] While installing on SME 7.rc2 I get FATAL: missing or erroneous pg_hba.conf file Well, I did get it to go, in the end, it was the wrapping and the >> that was messing things up for me... But with This going down, and a HUGE time crunch on a project I am in, I am not really on my 'A' Game... As a matter of fact, I am not even sure what the game is.. Just that I am not winning... > How do 'you' get the script from the page to your system? I am using SSH into the system from a KDE desktop. Cut & paste worked for me using nano for an editor. > Even if I get SL back up, I am still done, all my data is on a drive > that ... Just does not want to play fair anymore... Where are you located? If you are in southern Ontario, our speciality is data recovery. Check our website for details. Northern Ontario... Very Northern, about 1/2 hour from Manitoba. Good to know that your in the Data Recovery biz, I don't think I would send any of my own things down, as we "normally" keep good backups (as it is, I have 92% of this system backed up in Duplicate or better... However it's the wife's job to click the backup button, and... Well... Good thing I clicked the button a Month and a half ago... Saddly I don't fully have my head around SQL well enough to sort out how to get the last bit out of the 'read only filesystem (30)' Drive that will not mount for me with anything I throw at it... Thanks, for the help. I was SSH to a remote box, using pico, did a little edit, recopy, repaste, and all was good... > > -----Original Message----- > From: sql...@li... > [mailto:sql...@li...] On Behalf Of > Jason Shein > Sent: May 1, 2006 2:55 PM > To: sql...@li... > Subject: Re: [SL] While installing on SME 7.rc2 I get FATAL: missing > or erroneous pg_hba.conf file > > On Monday 01 May 2006 11:50, ATM Logic wrote: > > While reinstalling (see other post) > > > > Everything seems to go fairly smooth till this... > > > > su - postgres -c "createuser -a -d sql-ledger" > > createuser: could not connect to database template1: FATAL: missing > > or erroneous pg_hba.conf file > > HINT: See server log for details. > > Did you follow the HowTo? > http://contribs.org/modules/phpwiki/index.php/How%20to%20install%20SQL-L edg >e r%20on%20SME%207.0 > > I have used this method many times without issue on SME7. > > -- -- Jason Shein Director of Networking, Operations and Systems Detached Networks ja...@de... ( 905 ) - 876 - 4158 Voice ( 905 ) - 876 - 5817 Mobile http://www.detachednetworks.ca On-Site Computer Services - Available 24/7 Earn your service for FREE! Ask about our referral program. ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sql-ledger-users mailing list sql...@li... https://lists.sourceforge.net/lists/listinfo/sql-ledger-users ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sql-ledger-users mailing list sql...@li... https://lists.sourceforge.net/lists/listinfo/sql-ledger-users -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.1.385 / Virus Database: 268.5.1/327 - Release Date: 4/28/2006 ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sql-ledger-users mailing list sql...@li... https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Roy W P. <arc...@mt...> - 2006-05-02 15:06:26
|
On Tuesday 02 May 2006 9:37 am, ATM Logic wrote: > The problem is, it is a linux distro, however, its totally messed up, I only > have console access, and it will not let me mount anything... I have no > Network, I even threw in a second hard drive formated ext3 and I can "see" > it, but I cannot mount it. As a matter of fact it looks like although the > floppy is listed in the mnt/ folder saddly I may not be able to write to it > either... Have you tried booting from a floppy ? Depending on the filsystem that you have on that drive...maybe Tom's RootBoot (tomsrtbt) will work for you. It is a bare bones linux system on a single floppy that is specifically designed for recovering systems. http://www.toms.net/rb/ good luck, Roy |
From: david <da...@ke...> - 2006-05-03 01:33:48
|
On Tue, 2006-05-02 at 09:37 -0500, ATM Logic wrote: > > Yes, I agree totally on the backup not found... At least I had one from a > Month and a Half ago... Now I have shown the wife how to backup our > accounting system she has backed it up twice in the last hour :) > This sounds like a good time for a backup discussion. There is no way that I can trust myself to run backup manually, so I have this running as a daily cron job: pg_dump -U sql-ledger -f /backup/postgresql/`date +%y%m%d%H%M`.SL SL rdiff-backup /backup/ me@remote::/backup/ 1> /dev/null 2>> /backup/log echo "`date +%y%m%d%H%M` backup complete" >> /backup/log That should give me two daily copies of the database, one local, one remote. Naturally, I never test my backup system. That would be much too sensible, and by test, I mean restore and compare with what it really should be.. I do know that this produces lots of files that LOOK ok! So far I've not had any failures. If the above doesn't work I'm in trouble. What do others do? My system is not "live" - I enter data after the event, so once per day is reasonably sane. What would you do if you were depending on live data being entered from lots of locations and the loss of an hour's entries could be catastrophic? |
From: Mark B. <ma...@ga...> - 2006-05-03 01:45:31
|
On Wed, May 03, 2006 at 11:34:39AM +1000, david wrote: > What would you do if you were > depending on live data being entered > from lots of locations and the loss of an hour's entries could be > catastrophic? Software raid 1 on all servers, pgdump + dump(8) for backups, and db replication (but only write to one db to keep things simple). Pipe dump output through gzip and store a couple months worth (or whatever) on a NAS. Dump is the fastest I have found for backups and restores. Speed of restore is very important and something people forget about. This is why people pay for good hosting companies. :) m |
From: Jeff V. <jv...@ch...> - 2006-05-04 22:38:57
|
On Wed, 2006-05-03 at 11:34 +1000, david wrote: > On Tue, 2006-05-02 at 09:37 -0500, ATM Logic wrote: > > > > > Yes, I agree totally on the backup not found... At least I had one from a > > Month and a Half ago... Now I have shown the wife how to backup our > > accounting system she has backed it up twice in the last hour :) > > > > This sounds like a good time for a backup discussion. There is no way > that I can trust myself to run backup manually, so I have this running > as a daily cron job: > > > pg_dump -U sql-ledger -f /backup/postgresql/`date +%y%m%d%H%M`.SL SL > rdiff-backup /backup/ me@remote::/backup/ 1> /dev/null 2>> /backup/log > echo "`date +%y%m%d%H%M` backup complete" >> /backup/log > Just a nitpicking comment here on the syntax. You are calling date twice, once before starting the backup and once after it completes. The return from the two calls most likely will be different in at least the seconds value and may be different in the minutes value (or depending on time of day may also be different in the hours value). I would recommend you do a single call to date and assign the value to a variable, then use that variable to name the file and return the message. Something like TDATE=`date +%y%m%d%H%M` prior to the call to pg_dump, then use ${TDATE} in place of your date calls in both places above. This will avoid possible inconsistencies between the file name and the results reported by the echo command. > That should give me two daily copies of the database, one local, one > remote. Naturally, I never test my backup system. That would be much too > sensible, and by test, I mean restore and compare with what it really > should be.. I do know that this produces lots of files that LOOK ok! So > far I've not had any failures. If the above doesn't work I'm in trouble. > > What do others do? My system is not "live" - I enter data after the > event, so once per day is reasonably sane. What would you do if you were > depending on live data being entered from lots of locations and the loss > of an hour's entries could be catastrophic? > > > > > ------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > sql-ledger-users mailing list > sql...@li... > https://lists.sourceforge.net/lists/listinfo/sql-ledger-users |
From: Angus C. <ac...@sa...> - 2006-05-05 14:55:23
|
Jeff Vian wrote: > On Wed, 2006-05-03 at 11:34 +1000, david wrote: > >> On Tue, 2006-05-02 at 09:37 -0500, ATM Logic wrote: >> >> >>> Yes, I agree totally on the backup not found... At least I had one from a >>> Month and a Half ago... Now I have shown the wife how to backup our >>> accounting system she has backed it up twice in the last hour :) >>> >>> >> This sounds like a good time for a backup discussion. There is no way >> that I can trust myself to run backup manually, so I have this running >> as a daily cron job: >> >> >> pg_dump -U sql-ledger -f /backup/postgresql/`date +%y%m%d%H%M`.SL SL >> rdiff-backup /backup/ me@remote::/backup/ 1> /dev/null 2>> /backup/log >> echo "`date +%y%m%d%H%M` backup complete" >> /backup/log >> >> > Just a nitpicking comment here on the syntax. > You are calling date twice, once before starting the backup and once > after it completes. The return from the two calls most likely will be > different in at least the seconds value and may be different in the > minutes value (or depending on time of day may also be different in the > hours value). > > I would recommend you do a single call to date and assign the value to a > variable, then use that variable to name the file and return the > message. Something like TDATE=`date +%y%m%d%H%M` prior to the call to > pg_dump, then use ${TDATE} in place of your date calls in both places > above. This will avoid possible inconsistencies between the file name > and the results reported by the echo command. > > >> That should give me two daily copies of the database, one local, one >> remote. Naturally, I never test my backup system. That would be much too >> sensible, and by test, I mean restore and compare with what it really >> should be.. I do know that this produces lots of files that LOOK ok! So >> far I've not had any failures. If the above doesn't work I'm in trouble. >> >> What do others do? My system is not "live" - I enter data after the >> event, so once per day is reasonably sane. What would you do if you were >> depending on live data being entered from lots of locations and the loss >> of an hour's entries could be catastrophic? >> >> Another approach is to back it up to a source code repository. That way, your dump file can be checked in and you can have copies going back to the beginning of time. You can check a copy out for testing. You can bring up a new revision of the software on another machine, test the new revision on the old dataset, and know that your main setup is still ok, etc, etc, etc. It's a handy way to deal with it and it doesn't take much more space than a raw dump file. Angus Carr. |
From: ATM L. <atm...@km...> - 2006-05-11 15:28:41
|
Just wondering if anyone on the list has a good resource for helping to promote SQL-Ledger. We seem to be able to help get them over the fact that although its web based its not "on the web" (but it could be), and they are happy that it can have multi-user, but get a little edgy when you tell them "unlimited", however the show stopper is when you tell them the software is free... Actually the best interest I got was telling them its about $1800 to get a system in, and 'set-it-up' with SL. Also, I would like to setup my own "Demo" server however I would love to load it right up with demo data, does anyone have some sample data they have used. In the past I have sent clients to the Canada demo server at http://abacus.sql-ledger.com/sql-ledger/login.pl . However that will not let you do any of the admin functions, and they have had some connection problems in the past. Anyhow, just looking for material for now, thanks. |