Re: [spctools-discuss] getting 403/Forbidden on new install at http://localhost:10401/tpp/cgi-bin/tpp_gui.pl

2022-06-08 Thread 'David Shteynberg' via spctools-discuss
Great! Thank you for keep and sharing your useful notes in this process.
Let us know if you encounter other issues or have any questions.

Cheers,
David

On Wed, Jun 8, 2022, 5:37 PM Malcolm Cook  wrote:

> Things I've tried and failed (with an `apachectl restart` after each)
>
>1.  sudo chown -R apache.apache /usr/local/tpp/cgi-bin;
>2.  sudo chown -R apache.apache /usr/local/tpp
>3.
>4.  sudo chmod 755 -R apache.apache /usr/local/tpp
>5. disabled other /etc/httpd/conf.d/
>
> FIXED!  There was interference from another app being served (incorrectly)
> on this server.
>
> Mea culpa,
>
> ~ Malcolm
> On Wednesday, June 8, 2022 at 5:17:49 PM UTC-5 Malcolm Cook wrote:
>
>> an oddity re: the error message is it says " ExecCGI is off in this
>> directory: /usr/local/tpp/cgi-bin/tpp_gui.pl"  but it names a file, not
>> a directory.
>>
>> ...maybe nothing.
>>
>> On Wednesday, June 8, 2022 at 5:14:17 PM UTC-5 Malcolm Cook wrote:
>>
>>> hi again
>>> yes, I reported the only entry after fresh restart of apache and
>>> accessing that url I get the following in the error log:
>>>
>>> [Wed Jun 08 17:08:31.331141 2022] [mpm_prefork:notice] [pid 4451]
>>> AH00163: Apache/2.4.6 (CentOS) configured -- resuming normal operations
>>> [Wed Jun 08 17:08:31.331189 2022] [core:notice] [pid 4451] AH00094:
>>> Command line: '/usr/sbin/httpd -D FOREGROUND'
>>> [Wed Jun 08 17:08:39.167358 2022] [cgi:error] [pid 4453] [client
>>> 127.0.0.1:44684] Options ExecCGI is off in this directory:
>>> /usr/local/tpp/cgi-bin/tpp_gui.pl
>>>
>>> corresponding to this in the access log:
>>>
>>> 127.0.0.1 - - [08/Jun/2022:17:08:39 -0500] "GET /tpp/cgi-bin/tpp_gui.pl
>>> HTTP/1.1" 403 224 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:91.0)
>>> Gecko/20100101 Firefox/91.0"
>>>
>>> On Wednesday, June 8, 2022 at 5:04:27 PM UTC-5 David Shteynberg wrote:
>>>
 It sounds like you are making progress get this installed and running.
 Can you check the apache error logs to see if they hold the next clue?

 Thanks,
 David

 On Wed, Jun 8, 2022, 4:25 PM Malcolm Cook  wrote:

> I just finished building and installing TPP under centos7
>
> Following Testing the installation with a sample dataset
> 
>  on
> I navigate to http://localhost:10401/tpp/cgi-bin/tpp_gui.pl
>
> I am running apache as user 'apache'
>
> It returns 403/Forbidden
>
> I think I must have some permissions/ownership wrong somewhere
>
> The error log shows:
>
>  Options ExecCGI is off in this directory: /usr/local/tpp/cgi-bin/
> tpp_gui.pl
>
> This should not be since the installed httpd-2.4-tpp-1.conf indeed has
> this stanza:
>
> Alias //tpp/cgi-bin "/usr/local/tpp/cgi-bin"
> 
> Options MultiViews ExecCGI
> AddHandler cgi-script .pl .cgi
> ...
>
> Any ideas?
>
> Here are some more configuration diagnostics that might help...
>
> the CGI program is executable by anyone and owned by user tpp:
>
> ls -la /usr/local/tpp/cgi-bin/tpp_gui.pl
> -r-xr-xr-x 1 tpp tpp 484152 Jun  8 14:19 /usr/local/tpp/cgi-bin/
> tpp_gui.pl
>
> Below I review the ownership of directories within /usr/local/tpp
>
>  tree -u -d /usr/local/tpp
> /usr/local/tpp
> |-- [tpp ]  bin
> |-- [tpp ]  cgi-bin
> |-- [tpp ]  conf
> |-- [tpp ]  html
> |   |-- [tpp ]  css
> |   |-- [tpp ]  images
> |   |   |-- [tpp ]  help
> |   |   `-- [tpp ]  lorikeet
> |   |-- [tpp ]  js
> |   `-- [tpp ]  ref
> |-- [tpp ]  lib
> |   |-- [tpp ]  Mayu
> |   |   `-- [tpp ]  R
> |   `-- [tpp ]  perl
> |   `-- [tpp ]  TPP
> |-- [tpp ]  lic
> |   |-- [tpp ]  ProteoWizard
> |   |-- [tpp ]  boost
> |   |-- [tpp ]  bzip2
> |   |-- [tpp ]  d3
> |   |-- [tpp ]  expat
> |   |-- [tpp ]  fann
> |   |-- [tpp ]  gsl
> |   |-- [tpp ]  gzstream
> |   |-- [tpp ]  libarchive
> |   `-- [tpp ]  libgd
> |-- [apache  ]  log
> |-- [tpp ]  man
> |   |-- [tpp ]  man1
> |   `-- [tpp ]  man3
> |-- [tpp ]  schema
> `-- [apache  ]  users
> `-- [apache  ]  guest
>
> --
> You received this message because you are subscribed to the Google
> Groups "spctools-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to spctools-discu...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/spctools-discuss/55b3c042-60fb-4317-a05d-acae6a52a187n%40googlegroups.com
> 

Re: [spctools-discuss] getting 403/Forbidden on new install at http://localhost:10401/tpp/cgi-bin/tpp_gui.pl

2022-06-08 Thread Malcolm Cook
Things I've tried and failed (with an `apachectl restart` after each)

   1.  sudo chown -R apache.apache /usr/local/tpp/cgi-bin;
   2.  sudo chown -R apache.apache /usr/local/tpp
   3. 
   4.  sudo chmod 755 -R apache.apache /usr/local/tpp
   5. disabled other /etc/httpd/conf.d/

FIXED!  There was interference from another app being served (incorrectly) 
on this server.

Mea culpa,

~ Malcolm
On Wednesday, June 8, 2022 at 5:17:49 PM UTC-5 Malcolm Cook wrote:

> an oddity re: the error message is it says " ExecCGI is off in this 
> directory: /usr/local/tpp/cgi-bin/tpp_gui.pl"  but it names a file, not a 
> directory. 
>
> ...maybe nothing.
>
> On Wednesday, June 8, 2022 at 5:14:17 PM UTC-5 Malcolm Cook wrote:
>
>> hi again
>> yes, I reported the only entry after fresh restart of apache and 
>> accessing that url I get the following in the error log:
>>
>> [Wed Jun 08 17:08:31.331141 2022] [mpm_prefork:notice] [pid 4451] 
>> AH00163: Apache/2.4.6 (CentOS) configured -- resuming normal operations
>> [Wed Jun 08 17:08:31.331189 2022] [core:notice] [pid 4451] AH00094: 
>> Command line: '/usr/sbin/httpd -D FOREGROUND'
>> [Wed Jun 08 17:08:39.167358 2022] [cgi:error] [pid 4453] [client 
>> 127.0.0.1:44684] Options ExecCGI is off in this directory: 
>> /usr/local/tpp/cgi-bin/tpp_gui.pl
>>
>> corresponding to this in the access log:
>>
>> 127.0.0.1 - - [08/Jun/2022:17:08:39 -0500] "GET /tpp/cgi-bin/tpp_gui.pl 
>> HTTP/1.1" 403 224 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:91.0) 
>> Gecko/20100101 Firefox/91.0"
>>
>> On Wednesday, June 8, 2022 at 5:04:27 PM UTC-5 David Shteynberg wrote:
>>
>>> It sounds like you are making progress get this installed and running. 
>>> Can you check the apache error logs to see if they hold the next clue?
>>>
>>> Thanks,
>>> David
>>>
>>> On Wed, Jun 8, 2022, 4:25 PM Malcolm Cook  wrote:
>>>
 I just finished building and installing TPP under centos7 

 Following Testing the installation with a sample dataset 
 
  on 
 I navigate to http://localhost:10401/tpp/cgi-bin/tpp_gui.pl

 I am running apache as user 'apache'

 It returns 403/Forbidden

 I think I must have some permissions/ownership wrong somewhere

 The error log shows:

  Options ExecCGI is off in this directory: /usr/local/tpp/cgi-bin/
 tpp_gui.pl

 This should not be since the installed httpd-2.4-tpp-1.conf indeed has 
 this stanza:

 Alias //tpp/cgi-bin "/usr/local/tpp/cgi-bin"
 
 Options MultiViews ExecCGI
 AddHandler cgi-script .pl .cgi 
 ...

 Any ideas?

 Here are some more configuration diagnostics that might help...

 the CGI program is executable by anyone and owned by user tpp:

 ls -la /usr/local/tpp/cgi-bin/tpp_gui.pl
 -r-xr-xr-x 1 tpp tpp 484152 Jun  8 14:19 /usr/local/tpp/cgi-bin/
 tpp_gui.pl

 Below I review the ownership of directories within /usr/local/tpp

  tree -u -d /usr/local/tpp
 /usr/local/tpp
 |-- [tpp ]  bin
 |-- [tpp ]  cgi-bin
 |-- [tpp ]  conf
 |-- [tpp ]  html
 |   |-- [tpp ]  css
 |   |-- [tpp ]  images
 |   |   |-- [tpp ]  help
 |   |   `-- [tpp ]  lorikeet
 |   |-- [tpp ]  js
 |   `-- [tpp ]  ref
 |-- [tpp ]  lib
 |   |-- [tpp ]  Mayu
 |   |   `-- [tpp ]  R
 |   `-- [tpp ]  perl
 |   `-- [tpp ]  TPP
 |-- [tpp ]  lic
 |   |-- [tpp ]  ProteoWizard
 |   |-- [tpp ]  boost
 |   |-- [tpp ]  bzip2
 |   |-- [tpp ]  d3
 |   |-- [tpp ]  expat
 |   |-- [tpp ]  fann
 |   |-- [tpp ]  gsl
 |   |-- [tpp ]  gzstream
 |   |-- [tpp ]  libarchive
 |   `-- [tpp ]  libgd
 |-- [apache  ]  log
 |-- [tpp ]  man
 |   |-- [tpp ]  man1
 |   `-- [tpp ]  man3
 |-- [tpp ]  schema
 `-- [apache  ]  users
 `-- [apache  ]  guest

 -- 
 You received this message because you are subscribed to the Google 
 Groups "spctools-discuss" group.
 To unsubscribe from this group and stop receiving emails from it, send 
 an email to spctools-discu...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/spctools-discuss/55b3c042-60fb-4317-a05d-acae6a52a187n%40googlegroups.com
  
 
 .

>>>

-- 
You received this message because you are subscribed to the Google Groups 
"spctools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spctools-discuss+unsubscr...@googlegroups.com.
To view 

Re: [spctools-discuss] getting 403/Forbidden on new install at http://localhost:10401/tpp/cgi-bin/tpp_gui.pl

2022-06-08 Thread Malcolm Cook
an oddity re: the error message is it says " ExecCGI is off in this 
directory: /usr/local/tpp/cgi-bin/tpp_gui.pl"  but it names a file, not a 
directory. 

...maybe nothing.

On Wednesday, June 8, 2022 at 5:14:17 PM UTC-5 Malcolm Cook wrote:

> hi again
> yes, I reported the only entry after fresh restart of apache and accessing 
> that url I get the following in the error log:
>
> [Wed Jun 08 17:08:31.331141 2022] [mpm_prefork:notice] [pid 4451] AH00163: 
> Apache/2.4.6 (CentOS) configured -- resuming normal operations
> [Wed Jun 08 17:08:31.331189 2022] [core:notice] [pid 4451] AH00094: 
> Command line: '/usr/sbin/httpd -D FOREGROUND'
> [Wed Jun 08 17:08:39.167358 2022] [cgi:error] [pid 4453] [client 
> 127.0.0.1:44684] Options ExecCGI is off in this directory: 
> /usr/local/tpp/cgi-bin/tpp_gui.pl
>
> corresponding to this in the access log:
>
> 127.0.0.1 - - [08/Jun/2022:17:08:39 -0500] "GET /tpp/cgi-bin/tpp_gui.pl 
> HTTP/1.1" 403 224 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:91.0) 
> Gecko/20100101 Firefox/91.0"
>
> On Wednesday, June 8, 2022 at 5:04:27 PM UTC-5 David Shteynberg wrote:
>
>> It sounds like you are making progress get this installed and running. 
>> Can you check the apache error logs to see if they hold the next clue?
>>
>> Thanks,
>> David
>>
>> On Wed, Jun 8, 2022, 4:25 PM Malcolm Cook  wrote:
>>
>>> I just finished building and installing TPP under centos7 
>>>
>>> Following Testing the installation with a sample dataset 
>>> 
>>>  on 
>>> I navigate to http://localhost:10401/tpp/cgi-bin/tpp_gui.pl
>>>
>>> I am running apache as user 'apache'
>>>
>>> It returns 403/Forbidden
>>>
>>> I think I must have some permissions/ownership wrong somewhere
>>>
>>> The error log shows:
>>>
>>>  Options ExecCGI is off in this directory: /usr/local/tpp/cgi-bin/
>>> tpp_gui.pl
>>>
>>> This should not be since the installed httpd-2.4-tpp-1.conf indeed has 
>>> this stanza:
>>>
>>> Alias //tpp/cgi-bin "/usr/local/tpp/cgi-bin"
>>> 
>>> Options MultiViews ExecCGI
>>> AddHandler cgi-script .pl .cgi 
>>> ...
>>>
>>> Any ideas?
>>>
>>> Here are some more configuration diagnostics that might help...
>>>
>>> the CGI program is executable by anyone and owned by user tpp:
>>>
>>> ls -la /usr/local/tpp/cgi-bin/tpp_gui.pl
>>> -r-xr-xr-x 1 tpp tpp 484152 Jun  8 14:19 /usr/local/tpp/cgi-bin/
>>> tpp_gui.pl
>>>
>>> Below I review the ownership of directories within /usr/local/tpp
>>>
>>>  tree -u -d /usr/local/tpp
>>> /usr/local/tpp
>>> |-- [tpp ]  bin
>>> |-- [tpp ]  cgi-bin
>>> |-- [tpp ]  conf
>>> |-- [tpp ]  html
>>> |   |-- [tpp ]  css
>>> |   |-- [tpp ]  images
>>> |   |   |-- [tpp ]  help
>>> |   |   `-- [tpp ]  lorikeet
>>> |   |-- [tpp ]  js
>>> |   `-- [tpp ]  ref
>>> |-- [tpp ]  lib
>>> |   |-- [tpp ]  Mayu
>>> |   |   `-- [tpp ]  R
>>> |   `-- [tpp ]  perl
>>> |   `-- [tpp ]  TPP
>>> |-- [tpp ]  lic
>>> |   |-- [tpp ]  ProteoWizard
>>> |   |-- [tpp ]  boost
>>> |   |-- [tpp ]  bzip2
>>> |   |-- [tpp ]  d3
>>> |   |-- [tpp ]  expat
>>> |   |-- [tpp ]  fann
>>> |   |-- [tpp ]  gsl
>>> |   |-- [tpp ]  gzstream
>>> |   |-- [tpp ]  libarchive
>>> |   `-- [tpp ]  libgd
>>> |-- [apache  ]  log
>>> |-- [tpp ]  man
>>> |   |-- [tpp ]  man1
>>> |   `-- [tpp ]  man3
>>> |-- [tpp ]  schema
>>> `-- [apache  ]  users
>>> `-- [apache  ]  guest
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "spctools-discuss" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to spctools-discu...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/spctools-discuss/55b3c042-60fb-4317-a05d-acae6a52a187n%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"spctools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spctools-discuss+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/spctools-discuss/ccf21cfa-da5d-4711-9efc-67223c4c8fd2n%40googlegroups.com.


Re: [spctools-discuss] getting 403/Forbidden on new install at http://localhost:10401/tpp/cgi-bin/tpp_gui.pl

2022-06-08 Thread Malcolm Cook
hi again
yes, I reported the only entry after fresh restart of apache and accessing 
that url I get the following in the error log:

[Wed Jun 08 17:08:31.331141 2022] [mpm_prefork:notice] [pid 4451] AH00163: 
Apache/2.4.6 (CentOS) configured -- resuming normal operations
[Wed Jun 08 17:08:31.331189 2022] [core:notice] [pid 4451] AH00094: Command 
line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Jun 08 17:08:39.167358 2022] [cgi:error] [pid 4453] [client 
127.0.0.1:44684] Options ExecCGI is off in this directory: 
/usr/local/tpp/cgi-bin/tpp_gui.pl

corresponding to this in the access log:

127.0.0.1 - - [08/Jun/2022:17:08:39 -0500] "GET /tpp/cgi-bin/tpp_gui.pl 
HTTP/1.1" 403 224 "-" "Mozilla/5.0 (X11; Linux x86_64; rv:91.0) 
Gecko/20100101 Firefox/91.0"

On Wednesday, June 8, 2022 at 5:04:27 PM UTC-5 David Shteynberg wrote:

> It sounds like you are making progress get this installed and running. Can 
> you check the apache error logs to see if they hold the next clue?
>
> Thanks,
> David
>
> On Wed, Jun 8, 2022, 4:25 PM Malcolm Cook  wrote:
>
>> I just finished building and installing TPP under centos7 
>>
>> Following Testing the installation with a sample dataset 
>> 
>>  on 
>> I navigate to http://localhost:10401/tpp/cgi-bin/tpp_gui.pl
>>
>> I am running apache as user 'apache'
>>
>> It returns 403/Forbidden
>>
>> I think I must have some permissions/ownership wrong somewhere
>>
>> The error log shows:
>>
>>  Options ExecCGI is off in this directory: /usr/local/tpp/cgi-bin/
>> tpp_gui.pl
>>
>> This should not be since the installed httpd-2.4-tpp-1.conf indeed has 
>> this stanza:
>>
>> Alias //tpp/cgi-bin "/usr/local/tpp/cgi-bin"
>> 
>> Options MultiViews ExecCGI
>> AddHandler cgi-script .pl .cgi 
>> ...
>>
>> Any ideas?
>>
>> Here are some more configuration diagnostics that might help...
>>
>> the CGI program is executable by anyone and owned by user tpp:
>>
>> ls -la /usr/local/tpp/cgi-bin/tpp_gui.pl
>> -r-xr-xr-x 1 tpp tpp 484152 Jun  8 14:19 /usr/local/tpp/cgi-bin/
>> tpp_gui.pl
>>
>> Below I review the ownership of directories within /usr/local/tpp
>>
>>  tree -u -d /usr/local/tpp
>> /usr/local/tpp
>> |-- [tpp ]  bin
>> |-- [tpp ]  cgi-bin
>> |-- [tpp ]  conf
>> |-- [tpp ]  html
>> |   |-- [tpp ]  css
>> |   |-- [tpp ]  images
>> |   |   |-- [tpp ]  help
>> |   |   `-- [tpp ]  lorikeet
>> |   |-- [tpp ]  js
>> |   `-- [tpp ]  ref
>> |-- [tpp ]  lib
>> |   |-- [tpp ]  Mayu
>> |   |   `-- [tpp ]  R
>> |   `-- [tpp ]  perl
>> |   `-- [tpp ]  TPP
>> |-- [tpp ]  lic
>> |   |-- [tpp ]  ProteoWizard
>> |   |-- [tpp ]  boost
>> |   |-- [tpp ]  bzip2
>> |   |-- [tpp ]  d3
>> |   |-- [tpp ]  expat
>> |   |-- [tpp ]  fann
>> |   |-- [tpp ]  gsl
>> |   |-- [tpp ]  gzstream
>> |   |-- [tpp ]  libarchive
>> |   `-- [tpp ]  libgd
>> |-- [apache  ]  log
>> |-- [tpp ]  man
>> |   |-- [tpp ]  man1
>> |   `-- [tpp ]  man3
>> |-- [tpp ]  schema
>> `-- [apache  ]  users
>> `-- [apache  ]  guest
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "spctools-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to spctools-discu...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/spctools-discuss/55b3c042-60fb-4317-a05d-acae6a52a187n%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"spctools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spctools-discuss+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/spctools-discuss/bdfc841a-0c92-424b-bfad-2b58e5ec611en%40googlegroups.com.


Re: [spctools-discuss] getting 403/Forbidden on new install at http://localhost:10401/tpp/cgi-bin/tpp_gui.pl

2022-06-08 Thread 'David Shteynberg' via spctools-discuss
It sounds like you are making progress get this installed and running. Can
you check the apache error logs to see if they hold the next clue?

Thanks,
David

On Wed, Jun 8, 2022, 4:25 PM Malcolm Cook  wrote:

> I just finished building and installing TPP under centos7
>
> Following Testing the installation with a sample dataset
> 
>  on
> I navigate to http://localhost:10401/tpp/cgi-bin/tpp_gui.pl
>
> I am running apache as user 'apache'
>
> It returns 403/Forbidden
>
> I think I must have some permissions/ownership wrong somewhere
>
> The error log shows:
>
>  Options ExecCGI is off in this directory: /usr/local/tpp/cgi-bin/
> tpp_gui.pl
>
> This should not be since the installed httpd-2.4-tpp-1.conf indeed has
> this stanza:
>
> Alias //tpp/cgi-bin "/usr/local/tpp/cgi-bin"
> 
> Options MultiViews ExecCGI
> AddHandler cgi-script .pl .cgi
> ...
>
> Any ideas?
>
> Here are some more configuration diagnostics that might help...
>
> the CGI program is executable by anyone and owned by user tpp:
>
> ls -la /usr/local/tpp/cgi-bin/tpp_gui.pl
> -r-xr-xr-x 1 tpp tpp 484152 Jun  8 14:19 /usr/local/tpp/cgi-bin/tpp_gui.pl
>
> Below I review the ownership of directories within /usr/local/tpp
>
>  tree -u -d /usr/local/tpp
> /usr/local/tpp
> |-- [tpp ]  bin
> |-- [tpp ]  cgi-bin
> |-- [tpp ]  conf
> |-- [tpp ]  html
> |   |-- [tpp ]  css
> |   |-- [tpp ]  images
> |   |   |-- [tpp ]  help
> |   |   `-- [tpp ]  lorikeet
> |   |-- [tpp ]  js
> |   `-- [tpp ]  ref
> |-- [tpp ]  lib
> |   |-- [tpp ]  Mayu
> |   |   `-- [tpp ]  R
> |   `-- [tpp ]  perl
> |   `-- [tpp ]  TPP
> |-- [tpp ]  lic
> |   |-- [tpp ]  ProteoWizard
> |   |-- [tpp ]  boost
> |   |-- [tpp ]  bzip2
> |   |-- [tpp ]  d3
> |   |-- [tpp ]  expat
> |   |-- [tpp ]  fann
> |   |-- [tpp ]  gsl
> |   |-- [tpp ]  gzstream
> |   |-- [tpp ]  libarchive
> |   `-- [tpp ]  libgd
> |-- [apache  ]  log
> |-- [tpp ]  man
> |   |-- [tpp ]  man1
> |   `-- [tpp ]  man3
> |-- [tpp ]  schema
> `-- [apache  ]  users
> `-- [apache  ]  guest
>
> --
> You received this message because you are subscribed to the Google Groups
> "spctools-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to spctools-discuss+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/spctools-discuss/55b3c042-60fb-4317-a05d-acae6a52a187n%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"spctools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spctools-discuss+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/spctools-discuss/CAGJJY%3D9DjcA2ei_DGSSB8CJ8nDG4CA9qOyBzy4A35SKT103HEA%40mail.gmail.com.


[spctools-discuss] getting 403/Forbidden on new install at http://localhost:10401/tpp/cgi-bin/tpp_gui.pl

2022-06-08 Thread Malcolm Cook
I just finished building and installing TPP under centos7 

Following Testing the installation with a sample dataset 

 on 
I navigate to http://localhost:10401/tpp/cgi-bin/tpp_gui.pl

I am running apache as user 'apache'

It returns 403/Forbidden

I think I must have some permissions/ownership wrong somewhere

The error log shows:

 Options ExecCGI is off in this directory: /usr/local/tpp/cgi-bin/tpp_gui.pl

This should not be since the installed httpd-2.4-tpp-1.conf indeed has this 
stanza:

Alias //tpp/cgi-bin "/usr/local/tpp/cgi-bin"

Options MultiViews ExecCGI
AddHandler cgi-script .pl .cgi 
...

Any ideas?

Here are some more configuration diagnostics that might help...

the CGI program is executable by anyone and owned by user tpp:

ls -la /usr/local/tpp/cgi-bin/tpp_gui.pl
-r-xr-xr-x 1 tpp tpp 484152 Jun  8 14:19 /usr/local/tpp/cgi-bin/tpp_gui.pl

Below I review the ownership of directories within /usr/local/tpp

 tree -u -d /usr/local/tpp
/usr/local/tpp
|-- [tpp ]  bin
|-- [tpp ]  cgi-bin
|-- [tpp ]  conf
|-- [tpp ]  html
|   |-- [tpp ]  css
|   |-- [tpp ]  images
|   |   |-- [tpp ]  help
|   |   `-- [tpp ]  lorikeet
|   |-- [tpp ]  js
|   `-- [tpp ]  ref
|-- [tpp ]  lib
|   |-- [tpp ]  Mayu
|   |   `-- [tpp ]  R
|   `-- [tpp ]  perl
|   `-- [tpp ]  TPP
|-- [tpp ]  lic
|   |-- [tpp ]  ProteoWizard
|   |-- [tpp ]  boost
|   |-- [tpp ]  bzip2
|   |-- [tpp ]  d3
|   |-- [tpp ]  expat
|   |-- [tpp ]  fann
|   |-- [tpp ]  gsl
|   |-- [tpp ]  gzstream
|   |-- [tpp ]  libarchive
|   `-- [tpp ]  libgd
|-- [apache  ]  log
|-- [tpp ]  man
|   |-- [tpp ]  man1
|   `-- [tpp ]  man3
|-- [tpp ]  schema
`-- [apache  ]  users
`-- [apache  ]  guest

-- 
You received this message because you are subscribed to the Google Groups 
"spctools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spctools-discuss+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/spctools-discuss/55b3c042-60fb-4317-a05d-acae6a52a187n%40googlegroups.com.


Re: [spctools-discuss] stuck with problem making tpp

2022-06-08 Thread Malcolm Cook
I agree with you re using -k.  I only did it after make was terminating 
with an error in order to try and reveal any more errors.  But I appreciate 
the hazards in so doing.  Thanks for the reminder.

I have now rerun `make all` to completion without error.  I now believe the 
compile errors stemmed from my previously trying to perform a parallel 
build with `-j 6`

Thanks for coming to my assistance.  I do have a new problem but I'll raise 
that in a new email.

~Malcolm


Following are a few notes that might be useful to the next centos 7 
installer:

# libs for centos7 
sudo yum install -y gd-devel
sudo yum install -y libpng-devel
sudo yum install -y bzip2-devel
sudo yum install -y subversion
sudo yum install -y build-essential
sudo yum install -y perl
sudo yum install -y zlib-devel
sudo yum install -y libghc-bzlib-devel
sudo yum install -y gnuplot
sudo yum install -y unzip
sudo yum install -y expat
sudo yum install -y expat-devel #-devel
sudo yum install -y libgd-devel
sudo yum install -y r-base

## extra libs not mentioned in Ubuntu recipe or BUILD_LINUX
sudo yum install -y devtoolset-9 # use newer build chain
sudo yum install -y glibc-devel
sudo yum install -y glibc-static # without which `g++ Comet.o -o comet.exe 
-static ...` (and others) fail with "cannot find {-lpthread,-lm,-lc} "
sudo yum install -y fann-devel

## more libs from taken from 
release_6-1-0/installer_linux/install-prerequisites-centos-5_2.sh - unclear 
if actually needed in centos 7 but hey
sudo yum install -y mcrypt
sudo yum install -y swig

## you will want to make in an environment with: 
export LD_LIBRARY_PATH=/usr/lib64:${LD_LIBRARY_PATH} ## for libc and libm 
else error: 
"/opt/rh/devtoolset-9/root/usr/libexec/gcc/x86_64-redhat-linux/9/ld: cannot 
find -lc"
source /opt/rh/devtoolset-9/enable  # use newer build chain
 
# make install should presumably be called by root
sudo make install

# need to pipe yes into the build of XML::Twig
yes | sudo cpan install XML::Twig

restarting apache is performed with `sudo apachectl restart`

On Wednesday, June 8, 2022 at 8:21:28 AM UTC-5 David Shteynberg wrote:

> Also, I wouldn't recommend using make -k because then you get errors with 
> linking of the sort you are seeing because prerequisite dependencies are 
> not being built properly so downstream linking of applications to 
> dependencies fails.
>
> Can you send the actual errors that are generated when you run make all 
> for the first time on a fresh source tree as those are likely to hold 
> additional clues?  Also if you are able to provide access to the machine, 
> or a cloud machine with the same configuration and compilation problem, so 
> I can log in that would help me troubleshoot the issue.
>
> Thanks!
> -David
>
> On Tue, Jun 7, 2022 at 9:02 PM Malcolm Cook  wrote:
>
>> Hi,
>>
>> I am following &  adapting TPP 6.1.0: Installing on Ubuntu 20.04 LTS 
>> 
>>   
>> for our centos 7 environment.
>>
>> Here are some notes and problems I've encountered so far.
>>
>> I am building as non privileged user, proceeding as follows:
>>
>> # create environment for building
>> export LD_LIBRARY_PATH=/usr/lib64:${LD_LIBRARY_PATH} ## for 
>> {libc,libm,libpthreads} else error: "ld: cannot find -lc"
>>
>> source /opt/rh/devtoolset-9/enable  # enable RED HAT DEVELOPER TOOLSET 
>> 9.1 
>> 
>>
>> I am compiling with:
>>
>> make info
>> ARCH = x86_64
>> VENDOR = redhat
>> SYSTEM = linux
>> OS = Linux
>>
>> TPP_VERSION = 6.1.0
>> TPP_RELEASE = Parhelion
>> TPP_BUILDID = TPP v6.1.0 Parhelion, Build 202206071204-exported 
>> (Linux-x86_64)
>>
>> SRC_DIR = /n/sci/SCI-004255-ZFPROT/tpp/svn/trans_proteomic_pipeline
>>   BUILD_DIR = 
>> /n/sci/SCI-004255-ZFPROT/tpp/svn/trans_proteomic_pipeline/build/linux-x86_64-release
>> INSTALL_DIR = /usr/local/tpp
>>
>>TPP_HOME = /usr/local/tpp
>> TPP_DATADIR = /data/tpp
>> TPP_BASEURL = /tpp
>> TPP_DATAURL = /tpp/data
>>
>>  MZ5_SUPPORT is not enabled
>>
>> I found as advised that I had to call `make all` many times
>>
>> The first time created some directories and touch some files and them 
>> terminated with error:
>>
>> make: *** No rule to make target 
>> '/n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/html/',
>>  
>> needed by 'd3'.  Stop.
>>
>> The second time halted without an error without compiling anything, 
>> finally printing:
>>
>> ### ...done unpacking Boost source
>>
>> The 3rd through 6th time compile successively more,  though it produced a 
>> few warnings which were proceeded past, each of the form:
>>
>> /bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. 
>> -I..-g -O2 -MT rowcol.lo -MD -MP -MF .deps/rowcol.Tpo -c -o rowcol.lo 
>> rowcol.c
>> warning: On gcc, DLLs can not be built with 'static'.
>> warning: It is suggested to use 

Re: [spctools-discuss] stuck with problem making tpp

2022-06-08 Thread Malcolm Cook
Hi,

I think I am good as far as gcc version is concerned since I am compiling 
in an environment where I have enabled newer version using RED HAT 
DEVELOPER TOOLSET 9.1 

 - 
but to confirm...

gcc --version reports:
gcc (GCC) 9.3.1 20200408 (Red Hat 9.3.1-2)

According to  C++14 Support in GCC 
 
*GCC has full support for the of the 2014 C++ standard.*
*This mode is the default in GCC 6.1 up until GCC 10 (including); it can be 
explicitly selected with the -std=c++14 command-line flag, 
or -std=gnu++14 to enable GNU extensions as well.*

So I think this confirms it.
On Wednesday, June 8, 2022 at 8:12:08 AM UTC-5 David Shteynberg wrote:

> Dear Malcolm,
>
> Sorry you are having trouble building the TPP on centos 7.  There are many 
> ways you can use the TPP both on the cloud and locally in virtual machines 
> which would not require you to build the tools from source.  Nevertheless, 
> the latest release of the TPP has been updated to the c++14 standard yet 
> older versions of gcc don't support this standard, which might be causing 
> you problems.  Can you verify that your version of gcc supports c++14?
>
> Thank you,
> -David
>
>
> On Tue, Jun 7, 2022 at 9:02 PM Malcolm Cook  wrote:
>
>> Hi,
>>
>> I am following &  adapting TPP 6.1.0: Installing on Ubuntu 20.04 LTS 
>> 
>>   
>> for our centos 7 environment.
>>
>> Here are some notes and problems I've encountered so far.
>>
>> I am building as non privileged user, proceeding as follows:
>>
>> # create environment for building
>> export LD_LIBRARY_PATH=/usr/lib64:${LD_LIBRARY_PATH} ## for 
>> {libc,libm,libpthreads} else error: "ld: cannot find -lc"
>>
>> source /opt/rh/devtoolset-9/enable  # enable RED HAT DEVELOPER TOOLSET 
>> 9.1 
>> 
>>
>> I am compiling with:
>>
>> make info
>> ARCH = x86_64
>> VENDOR = redhat
>> SYSTEM = linux
>> OS = Linux
>>
>> TPP_VERSION = 6.1.0
>> TPP_RELEASE = Parhelion
>> TPP_BUILDID = TPP v6.1.0 Parhelion, Build 202206071204-exported 
>> (Linux-x86_64)
>>
>> SRC_DIR = /n/sci/SCI-004255-ZFPROT/tpp/svn/trans_proteomic_pipeline
>>   BUILD_DIR = 
>> /n/sci/SCI-004255-ZFPROT/tpp/svn/trans_proteomic_pipeline/build/linux-x86_64-release
>> INSTALL_DIR = /usr/local/tpp
>>
>>TPP_HOME = /usr/local/tpp
>> TPP_DATADIR = /data/tpp
>> TPP_BASEURL = /tpp
>> TPP_DATAURL = /tpp/data
>>
>>  MZ5_SUPPORT is not enabled
>>
>> I found as advised that I had to call `make all` many times
>>
>> The first time created some directories and touch some files and them 
>> terminated with error:
>>
>> make: *** No rule to make target 
>> '/n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/html/',
>>  
>> needed by 'd3'.  Stop.
>>
>> The second time halted without an error without compiling anything, 
>> finally printing:
>>
>> ### ...done unpacking Boost source
>>
>> The 3rd through 6th time compile successively more,  though it produced a 
>> few warnings which were proceeded past, each of the form:
>>
>> /bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. 
>> -I..-g -O2 -MT rowcol.lo -MD -MP -MF .deps/rowcol.Tpo -c -o rowcol.lo 
>> rowcol.c
>> warning: On gcc, DLLs can not be built with 'static'.
>> warning: It is suggested to use 'static' together with 
>> 'static'.
>>
>> The 7th time terminated with error:
>>
>> /bin/sh ./libtool --silent --mode=link gcc -I./lib -I. -g -O2 -Wall 
>> -Wmissing-prototypes -Wstrict-prototypes -fexceptions 
>>  -DHAVE_EXPAT_CONFIG_H -no-undefined -version-info 6:2:5 -rpath 
>> /n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/lib 
>>  -o libexpat.la lib/xmlparse.lo lib/xmltok.lo lib/xmlrole.lo
>> libtool: link: `lib/xmlparse.lo' is not a valid libtool object
>>
>> I called make an 8th time, this time as `make -k all` to "keep going" 
>> past errors and build as many targets as possible.  Many more programs were 
>> compiled successfully, though a few additional errors were picked up:
>>
>> /bin/sh ../libtool --mode=link gcc -D_REENTRANT -g -O2 -version-info 
>> 2:0:0  -o libfloatfann.la -rpath 
>> /n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/lib 
>>  floatfann.lo  
>> libtool: link: `floatfann.lo' is not a valid libtool object
>>
>> I'd be much obliged if anyone with more experience with tpp and gcc could 
>> comment or make any suggestions on moving forward with how to address any 
>> of the above errors.
>>
>> Thanks,
>>
>> Malcolm 
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "spctools-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to 

Re: [spctools-discuss] stuck with problem making tpp

2022-06-08 Thread 'David Shteynberg' via spctools-discuss
Also, I wouldn't recommend using make -k because then you get errors with
linking of the sort you are seeing because prerequisite dependencies are
not being built properly so downstream linking of applications to
dependencies fails.

Can you send the actual errors that are generated when you run make all for
the first time on a fresh source tree as those are likely to hold
additional clues?  Also if you are able to provide access to the machine,
or a cloud machine with the same configuration and compilation problem, so
I can log in that would help me troubleshoot the issue.

Thanks!
-David

On Tue, Jun 7, 2022 at 9:02 PM Malcolm Cook  wrote:

> Hi,
>
> I am following &  adapting TPP 6.1.0: Installing on Ubuntu 20.04 LTS
> 
> for our centos 7 environment.
>
> Here are some notes and problems I've encountered so far.
>
> I am building as non privileged user, proceeding as follows:
>
> # create environment for building
> export LD_LIBRARY_PATH=/usr/lib64:${LD_LIBRARY_PATH} ## for
> {libc,libm,libpthreads} else error: "ld: cannot find -lc"
>
> source /opt/rh/devtoolset-9/enable  # enable RED HAT DEVELOPER TOOLSET 9.1
> 
>
> I am compiling with:
>
> make info
> ARCH = x86_64
> VENDOR = redhat
> SYSTEM = linux
> OS = Linux
>
> TPP_VERSION = 6.1.0
> TPP_RELEASE = Parhelion
> TPP_BUILDID = TPP v6.1.0 Parhelion, Build 202206071204-exported
> (Linux-x86_64)
>
> SRC_DIR = /n/sci/SCI-004255-ZFPROT/tpp/svn/trans_proteomic_pipeline
>   BUILD_DIR =
> /n/sci/SCI-004255-ZFPROT/tpp/svn/trans_proteomic_pipeline/build/linux-x86_64-release
> INSTALL_DIR = /usr/local/tpp
>
>TPP_HOME = /usr/local/tpp
> TPP_DATADIR = /data/tpp
> TPP_BASEURL = /tpp
> TPP_DATAURL = /tpp/data
>
>  MZ5_SUPPORT is not enabled
>
> I found as advised that I had to call `make all` many times
>
> The first time created some directories and touch some files and them
> terminated with error:
>
> make: *** No rule to make target
> '/n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/html/',
> needed by 'd3'.  Stop.
>
> The second time halted without an error without compiling anything,
> finally printing:
>
> ### ...done unpacking Boost source
>
> The 3rd through 6th time compile successively more,  though it produced a
> few warnings which were proceeded past, each of the form:
>
> /bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..
> -I..-g -O2 -MT rowcol.lo -MD -MP -MF .deps/rowcol.Tpo -c -o rowcol.lo
> rowcol.c
> warning: On gcc, DLLs can not be built with 'static'.
> warning: It is suggested to use 'static' together with
> 'static'.
>
> The 7th time terminated with error:
>
> /bin/sh ./libtool --silent --mode=link gcc -I./lib -I. -g -O2 -Wall
> -Wmissing-prototypes -Wstrict-prototypes -fexceptions
>  -DHAVE_EXPAT_CONFIG_H -no-undefined -version-info 6:2:5 -rpath
> /n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/lib
>  -o libexpat.la lib/xmlparse.lo lib/xmltok.lo lib/xmlrole.lo
> libtool: link: `lib/xmlparse.lo' is not a valid libtool object
>
> I called make an 8th time, this time as `make -k all` to "keep going" past
> errors and build as many targets as possible.  Many more programs were
> compiled successfully, though a few additional errors were picked up:
>
> /bin/sh ../libtool --mode=link gcc -D_REENTRANT -g -O2 -version-info 2:0:0
>  -o libfloatfann.la -rpath
> /n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/lib
>  floatfann.lo
> libtool: link: `floatfann.lo' is not a valid libtool object
>
> I'd be much obliged if anyone with more experience with tpp and gcc could
> comment or make any suggestions on moving forward with how to address any
> of the above errors.
>
> Thanks,
>
> Malcolm
>
> --
> You received this message because you are subscribed to the Google Groups
> "spctools-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to spctools-discuss+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/spctools-discuss/2c3b135e-3282-43eb-be81-6f89370ae1bcn%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"spctools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spctools-discuss+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/spctools-discuss/CAGJJY%3D9_hu8tSHR51o2necoeNVcNrAgn%3D5653-YJpOC3FuJPjQ%40mail.gmail.com.


Re: [spctools-discuss] stuck with problem making tpp

2022-06-08 Thread 'David Shteynberg' via spctools-discuss
Dear Malcolm,

Sorry you are having trouble building the TPP on centos 7.  There are many
ways you can use the TPP both on the cloud and locally in virtual machines
which would not require you to build the tools from source.  Nevertheless,
the latest release of the TPP has been updated to the c++14 standard yet
older versions of gcc don't support this standard, which might be causing
you problems.  Can you verify that your version of gcc supports c++14?

Thank you,
-David


On Tue, Jun 7, 2022 at 9:02 PM Malcolm Cook  wrote:

> Hi,
>
> I am following &  adapting TPP 6.1.0: Installing on Ubuntu 20.04 LTS
> 
> for our centos 7 environment.
>
> Here are some notes and problems I've encountered so far.
>
> I am building as non privileged user, proceeding as follows:
>
> # create environment for building
> export LD_LIBRARY_PATH=/usr/lib64:${LD_LIBRARY_PATH} ## for
> {libc,libm,libpthreads} else error: "ld: cannot find -lc"
>
> source /opt/rh/devtoolset-9/enable  # enable RED HAT DEVELOPER TOOLSET 9.1
> 
>
> I am compiling with:
>
> make info
> ARCH = x86_64
> VENDOR = redhat
> SYSTEM = linux
> OS = Linux
>
> TPP_VERSION = 6.1.0
> TPP_RELEASE = Parhelion
> TPP_BUILDID = TPP v6.1.0 Parhelion, Build 202206071204-exported
> (Linux-x86_64)
>
> SRC_DIR = /n/sci/SCI-004255-ZFPROT/tpp/svn/trans_proteomic_pipeline
>   BUILD_DIR =
> /n/sci/SCI-004255-ZFPROT/tpp/svn/trans_proteomic_pipeline/build/linux-x86_64-release
> INSTALL_DIR = /usr/local/tpp
>
>TPP_HOME = /usr/local/tpp
> TPP_DATADIR = /data/tpp
> TPP_BASEURL = /tpp
> TPP_DATAURL = /tpp/data
>
>  MZ5_SUPPORT is not enabled
>
> I found as advised that I had to call `make all` many times
>
> The first time created some directories and touch some files and them
> terminated with error:
>
> make: *** No rule to make target
> '/n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/html/',
> needed by 'd3'.  Stop.
>
> The second time halted without an error without compiling anything,
> finally printing:
>
> ### ...done unpacking Boost source
>
> The 3rd through 6th time compile successively more,  though it produced a
> few warnings which were proceeded past, each of the form:
>
> /bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I..
> -I..-g -O2 -MT rowcol.lo -MD -MP -MF .deps/rowcol.Tpo -c -o rowcol.lo
> rowcol.c
> warning: On gcc, DLLs can not be built with 'static'.
> warning: It is suggested to use 'static' together with
> 'static'.
>
> The 7th time terminated with error:
>
> /bin/sh ./libtool --silent --mode=link gcc -I./lib -I. -g -O2 -Wall
> -Wmissing-prototypes -Wstrict-prototypes -fexceptions
>  -DHAVE_EXPAT_CONFIG_H -no-undefined -version-info 6:2:5 -rpath
> /n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/lib
>  -o libexpat.la lib/xmlparse.lo lib/xmltok.lo lib/xmlrole.lo
> libtool: link: `lib/xmlparse.lo' is not a valid libtool object
>
> I called make an 8th time, this time as `make -k all` to "keep going" past
> errors and build as many targets as possible.  Many more programs were
> compiled successfully, though a few additional errors were picked up:
>
> /bin/sh ../libtool --mode=link gcc -D_REENTRANT -g -O2 -version-info 2:0:0
>  -o libfloatfann.la -rpath
> /n/sci/SCI-004255-ZFPROT/tpp/release_6-1-0/build/linux-x86_64-release/lib
>  floatfann.lo
> libtool: link: `floatfann.lo' is not a valid libtool object
>
> I'd be much obliged if anyone with more experience with tpp and gcc could
> comment or make any suggestions on moving forward with how to address any
> of the above errors.
>
> Thanks,
>
> Malcolm
>
> --
> You received this message because you are subscribed to the Google Groups
> "spctools-discuss" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to spctools-discuss+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/spctools-discuss/2c3b135e-3282-43eb-be81-6f89370ae1bcn%40googlegroups.com
> 
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"spctools-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to spctools-discuss+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/spctools-discuss/CAGJJY%3D_dL3-4Lop_uvhvzUppPtj72yqn4QvBvBdWQDC1X7r4SQ%40mail.gmail.com.