[Met_help] [rt.rap.ucar.edu #93481] History for METViewer connection "access denied"

John Halley Gotway via RT met_help at ucar.edu
Wed Jan 22 12:36:52 MST 2020


----------------------------------------------------------------
  Initial Request
----------------------------------------------------------------

Hi MET helpdesk,

I hope this email finds you well. So my new question pertains to METviewer — we recently set up METviewer on our machine within the department and I have written up an xml script to perform a load test of stat files from my verification work using “mv_load". However, I attempt to load the data only to get an error saying that access is denied for me, the user. Is there any type of permission I’ll need to obtain to be able to upload my database to the METviewer web app? Any help with this matter is of course greatly appreciated.

Thanks!

-Brian
—————————————————————
Brian Matilla
Research Fellow— Warn-on-Forecast Team
Cooperative Institute for Mesoscale Meteorological Studies — The University of Oklahoma
NOAA National Severe Storms Laboratory

Phone: (405) 325-1688




----------------------------------------------------------------
  Complete Ticket History
----------------------------------------------------------------

Subject: METViewer connection "access denied"
From: Tatiana Burek
Time: Fri Dec 13 15:19:09 2019

Hi Brian,

In load XML file there is a tag <user> where you specify the user name
that will be used to load data to <database>.
Make sure this user has following privileges to all table in this
database:
SELECT
CREATE TEMPORARY TABLES
To apply these privileges run the following command as DB admin:
GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
'<user_name>'@'%';

Tatiana

On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
> Hi MET helpdesk,
>
> I hope this email finds you well. So my new question pertains to
> METviewer — we recently set up METviewer on our machine within the
> department and I have written up an xml script to perform a load
test
> of stat files from my verification work using “mv_load". However, I
> attempt to load the data only to get an error saying that access is
> denied for me, the user. Is there any type of permission I’ll need
to
> obtain to be able to upload my database to the METviewer web app?
Any
> help with this matter is of course greatly appreciated.
>
> Thanks!
>
> -Brian
> —————————————————————
> Brian Matilla
> Research Fellow— Warn-on-Forecast Team
> Cooperative Institute for Mesoscale Meteorological Studies — The
> University of Oklahoma
> NOAA National Severe Storms Laboratory
>
> Phone: (405) 325-1688



------------------------------------------------
Subject: Re: [rt.rap.ucar.edu #93481] METViewer connection "access denied"
From: Brian Matilla - NOAA Affiliate
Time: Fri Dec 13 15:45:06 2019

Hi Tatiana,

Thanks for such a quick reply. Our admin is out for the day so I’ll
follow up with you on this after the weekend once I can relay this
information to him and keep you posted with other questions then.

-Brian
> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
<met_help at ucar.edu> wrote:
>
> Hi Brian,
>
> In load XML file there is a tag <user> where you specify the user
name that will be used to load data to <database>.
> Make sure this user has following privileges to all table in this
database:
> SELECT
> CREATE TEMPORARY TABLES
> To apply these privileges run the following command as DB admin:
> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
'<user_name>'@'%';
>
> Tatiana
>
> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
>> Hi MET helpdesk,
>>
>> I hope this email finds you well. So my new question pertains to
>> METviewer — we recently set up METviewer on our machine within the
>> department and I have written up an xml script to perform a load
test
>> of stat files from my verification work using “mv_load". However, I
>> attempt to load the data only to get an error saying that access is
>> denied for me, the user. Is there any type of permission I’ll need
to
>> obtain to be able to upload my database to the METviewer web app?
Any
>> help with this matter is of course greatly appreciated.
>>
>> Thanks!
>>
>> -Brian
>> —————————————————————
>> Brian Matilla
>> Research Fellow— Warn-on-Forecast Team
>> Cooperative Institute for Mesoscale Meteorological Studies — The
>> University of Oklahoma
>> NOAA National Severe Storms Laboratory
>>
>> Phone: (405) 325-1688
>
>
>



------------------------------------------------
Subject: METViewer connection "access denied"
From: Tatiana Burek
Time: Mon Dec 16 07:54:56 2019

Brian,
I released that my answer is not incomplete.
As a database user you would need more privileges than SELECT and
TEMPORARY TABLES.
You should ask for all privileges:
GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
or individual:
GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
'<user_name>'@'%';

Tatiana

On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
> Hi Tatiana,
>
> Thanks for such a quick reply. Our admin is out for the day so I’ll
> follow up with you on this after the weekend once I can relay this
> information to him and keep you posted with other questions then.
>
> -Brian
> > On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
<met_help at ucar.edu>
> > wrote:
> >
> > Hi Brian,
> >
> > In load XML file there is a tag <user> where you specify the user
> > name that will be used to load data to <database>.
> > Make sure this user has following privileges to all table in this
> > database:
> > SELECT
> > CREATE TEMPORARY TABLES
> > To apply these privileges run the following command as DB admin:
> > GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
> > '<user_name>'@'%';
> >
> > Tatiana
> >
> > On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
> >> Hi MET helpdesk,
> >>
> >> I hope this email finds you well. So my new question pertains to
> >> METviewer — we recently set up METviewer on our machine within
the
> >> department and I have written up an xml script to perform a load
> >> test
> >> of stat files from my verification work using “mv_load". However,
I
> >> attempt to load the data only to get an error saying that access
is
> >> denied for me, the user. Is there any type of permission I’ll
need
> >> to
> >> obtain to be able to upload my database to the METviewer web app?
> >> Any
> >> help with this matter is of course greatly appreciated.
> >>
> >> Thanks!
> >>
> >> -Brian
> >> —————————————————————
> >> Brian Matilla
> >> Research Fellow— Warn-on-Forecast Team
> >> Cooperative Institute for Mesoscale Meteorological Studies — The
> >> University of Oklahoma
> >> NOAA National Severe Storms Laboratory
> >>
> >> Phone: (405) 325-1688
> >
> >
> >



------------------------------------------------
Subject: Re: [rt.rap.ucar.edu #93481] METViewer connection "access denied"
From: Brian Matilla - NOAA Affiliate
Time: Tue Dec 17 08:58:09 2019

Hi Tatiana,

Thanks for the updated information. I’ve passed it on to our DB admin
and he is currently working on getting that taken care of. I will let
you know of any questions or issues that pop up.

-Brian
> On Dec 16, 2019, at 8:54 AM, Tatiana Burek via RT
<met_help at ucar.edu> wrote:
>
> Brian,
> I released that my answer is not incomplete.
> As a database user you would need more privileges than SELECT and
TEMPORARY TABLES.
> You should ask for all privileges:
> GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
> or individual:
> GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
'<user_name>'@'%';
>
> Tatiana
>
> On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
>> Hi Tatiana,
>>
>> Thanks for such a quick reply. Our admin is out for the day so I’ll
>> follow up with you on this after the weekend once I can relay this
>> information to him and keep you posted with other questions then.
>>
>> -Brian
>>> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
<met_help at ucar.edu>
>>> wrote:
>>>
>>> Hi Brian,
>>>
>>> In load XML file there is a tag <user> where you specify the user
>>> name that will be used to load data to <database>.
>>> Make sure this user has following privileges to all table in this
>>> database:
>>> SELECT
>>> CREATE TEMPORARY TABLES
>>> To apply these privileges run the following command as DB admin:
>>> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
>>> '<user_name>'@'%';
>>>
>>> Tatiana
>>>
>>> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
>>>> Hi MET helpdesk,
>>>>
>>>> I hope this email finds you well. So my new question pertains to
>>>> METviewer — we recently set up METviewer on our machine within
the
>>>> department and I have written up an xml script to perform a load
>>>> test
>>>> of stat files from my verification work using “mv_load". However,
I
>>>> attempt to load the data only to get an error saying that access
is
>>>> denied for me, the user. Is there any type of permission I’ll
need
>>>> to
>>>> obtain to be able to upload my database to the METviewer web app?
>>>> Any
>>>> help with this matter is of course greatly appreciated.
>>>>
>>>> Thanks!
>>>>
>>>> -Brian
>>>> —————————————————————
>>>> Brian Matilla
>>>> Research Fellow— Warn-on-Forecast Team
>>>> Cooperative Institute for Mesoscale Meteorological Studies — The
>>>> University of Oklahoma
>>>> NOAA National Severe Storms Laboratory
>>>>
>>>> Phone: (405) 325-1688
>>>
>>>
>>>
>
>
>



------------------------------------------------
Subject: Re: [rt.rap.ucar.edu #93481] METViewer connection "access denied"
From: Brian Matilla - NOAA Affiliate
Time: Tue Jan 07 11:46:37 2020

Hello Tatiana,

First off, happy new year! Our database admin created the database
privileges I need and a mv_load test of some grid_stat data worked
without error. However, I can’t seem to see the mv database listed on
the METviewer website. Do I need to specify anything else in the
“mv_load” command for that to work?

Thanks!

-Brian
> On Dec 17, 2019, at 9:58 AM, Brian Matilla - NOAA Affiliate
<brian.matilla at noaa.gov> wrote:
>
> Hi Tatiana,
>
> Thanks for the updated information. I’ve passed it on to our DB
admin and he is currently working on getting that taken care of. I
will let you know of any questions or issues that pop up.
>
> -Brian
>> On Dec 16, 2019, at 8:54 AM, Tatiana Burek via RT
<met_help at ucar.edu> wrote:
>>
>> Brian,
>> I released that my answer is not incomplete.
>> As a database user you would need more privileges than SELECT and
TEMPORARY TABLES.
>> You should ask for all privileges:
>> GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
>> or individual:
>> GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
'<user_name>'@'%';
>>
>> Tatiana
>>
>> On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
>>> Hi Tatiana,
>>>
>>> Thanks for such a quick reply. Our admin is out for the day so
I’ll
>>> follow up with you on this after the weekend once I can relay this
>>> information to him and keep you posted with other questions then.
>>>
>>> -Brian
>>>> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
<met_help at ucar.edu>
>>>> wrote:
>>>>
>>>> Hi Brian,
>>>>
>>>> In load XML file there is a tag <user> where you specify the user
>>>> name that will be used to load data to <database>.
>>>> Make sure this user has following privileges to all table in this
>>>> database:
>>>> SELECT
>>>> CREATE TEMPORARY TABLES
>>>> To apply these privileges run the following command as DB admin:
>>>> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
>>>> '<user_name>'@'%';
>>>>
>>>> Tatiana
>>>>
>>>> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
>>>>> Hi MET helpdesk,
>>>>>
>>>>> I hope this email finds you well. So my new question pertains to
>>>>> METviewer — we recently set up METviewer on our machine within
the
>>>>> department and I have written up an xml script to perform a load
>>>>> test
>>>>> of stat files from my verification work using “mv_load".
However, I
>>>>> attempt to load the data only to get an error saying that access
is
>>>>> denied for me, the user. Is there any type of permission I’ll
need
>>>>> to
>>>>> obtain to be able to upload my database to the METviewer web
app?
>>>>> Any
>>>>> help with this matter is of course greatly appreciated.
>>>>>
>>>>> Thanks!
>>>>>
>>>>> -Brian
>>>>> —————————————————————
>>>>> Brian Matilla
>>>>> Research Fellow— Warn-on-Forecast Team
>>>>> Cooperative Institute for Mesoscale Meteorological Studies — The
>>>>> University of Oklahoma
>>>>> NOAA National Severe Storms Laboratory
>>>>>
>>>>> Phone: (405) 325-1688
>>>>
>>>>
>>>>
>>
>>
>>
>



------------------------------------------------
Subject: METViewer connection "access denied"
From: Tatiana Burek
Time: Wed Jan 08 07:36:32 2020

Hi Brian

Each time you add a new database or data to the existing database it
is recommended to clear the application cache by clinking on "Reload
databases" button in the right corner of METviewer page and reload the
browser window.

METviewer caches some metadata including the list of databases for the
performance purposes and these actions would clear the cached values.

Let me know if this helpes and you can select your database from the
drop-down menu.

Tatiana


On Tue Jan 07 11:46:37 2020, brian.matilla at noaa.gov wrote:
> Hello Tatiana,
>
> First off, happy new year! Our database admin created the database
> privileges I need and a mv_load test of some grid_stat data worked
> without error. However, I can’t seem to see the mv database listed
on
> the METviewer website. Do I need to specify anything else in the
> “mv_load” command for that to work?
>
> Thanks!
>
> -Brian
> > On Dec 17, 2019, at 9:58 AM, Brian Matilla - NOAA Affiliate
> > <brian.matilla at noaa.gov> wrote:
> >
> > Hi Tatiana,
> >
> > Thanks for the updated information. I’ve passed it on to our DB
admin
> > and he is currently working on getting that taken care of. I will
let
> > you know of any questions or issues that pop up.
> >
> > -Brian
> >> On Dec 16, 2019, at 8:54 AM, Tatiana Burek via RT
> >> <met_help at ucar.edu> wrote:
> >>
> >> Brian,
> >> I released that my answer is not incomplete.
> >> As a database user you would need more privileges than SELECT and
> >> TEMPORARY TABLES.
> >> You should ask for all privileges:
> >> GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
> >> or individual:
> >> GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
> >> '<user_name>'@'%';
> >>
> >> Tatiana
> >>
> >> On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
> >>> Hi Tatiana,
> >>>
> >>> Thanks for such a quick reply. Our admin is out for the day so
I’ll
> >>> follow up with you on this after the weekend once I can relay
this
> >>> information to him and keep you posted with other questions
then.
> >>>
> >>> -Brian
> >>>> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
> >>>> <met_help at ucar.edu>
> >>>> wrote:
> >>>>
> >>>> Hi Brian,
> >>>>
> >>>> In load XML file there is a tag <user> where you specify the
user
> >>>> name that will be used to load data to <database>.
> >>>> Make sure this user has following privileges to all table in
this
> >>>> database:
> >>>> SELECT
> >>>> CREATE TEMPORARY TABLES
> >>>> To apply these privileges run the following command as DB
admin:
> >>>> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
> >>>> '<user_name>'@'%';
> >>>>
> >>>> Tatiana
> >>>>
> >>>> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
> >>>>> Hi MET helpdesk,
> >>>>>
> >>>>> I hope this email finds you well. So my new question pertains
to
> >>>>> METviewer — we recently set up METviewer on our machine within
> >>>>> the
> >>>>> department and I have written up an xml script to perform a
load
> >>>>> test
> >>>>> of stat files from my verification work using “mv_load".
However,
> >>>>> I
> >>>>> attempt to load the data only to get an error saying that
access
> >>>>> is
> >>>>> denied for me, the user. Is there any type of permission I’ll
> >>>>> need
> >>>>> to
> >>>>> obtain to be able to upload my database to the METviewer web
app?
> >>>>> Any
> >>>>> help with this matter is of course greatly appreciated.
> >>>>>
> >>>>> Thanks!
> >>>>>
> >>>>> -Brian
> >>>>> —————————————————————
> >>>>> Brian Matilla
> >>>>> Research Fellow— Warn-on-Forecast Team
> >>>>> Cooperative Institute for Mesoscale Meteorological Studies —
The
> >>>>> University of Oklahoma
> >>>>> NOAA National Severe Storms Laboratory
> >>>>>
> >>>>> Phone: (405) 325-1688
> >>>>
> >>>>
> >>>>
> >>
> >>
> >>
> >



------------------------------------------------
Subject: Re: [rt.rap.ucar.edu #93481] METViewer connection "access denied"
From: Brian Matilla - NOAA Affiliate
Time: Wed Jan 08 12:30:29 2020

I did try that, however I still cannot see my database on the
METviewer page. Just in case, I also cleared my browser cache and went
to the METviewer page and the database is not present. Would you
happen to know if it is visible on your end? The database name is:
“mv_2018_FFaIR_WoFS”.

-Brian
> On Jan 8, 2020, at 8:36 AM, Tatiana Burek via RT <met_help at ucar.edu>
wrote:
>
> Hi Brian
>
> Each time you add a new database or data to the existing database it
is recommended to clear the application cache by clinking on "Reload
databases" button in the right corner of METviewer page and reload the
browser window.
>
> METviewer caches some metadata including the list of databases for
the performance purposes and these actions would clear the cached
values.
>
> Let me know if this helpes and you can select your database from the
drop-down menu.
>
> Tatiana
>
>
> On Tue Jan 07 11:46:37 2020, brian.matilla at noaa.gov wrote:
>> Hello Tatiana,
>>
>> First off, happy new year! Our database admin created the database
>> privileges I need and a mv_load test of some grid_stat data worked
>> without error. However, I can’t seem to see the mv database listed
on
>> the METviewer website. Do I need to specify anything else in the
>> “mv_load” command for that to work?
>>
>> Thanks!
>>
>> -Brian
>>> On Dec 17, 2019, at 9:58 AM, Brian Matilla - NOAA Affiliate
>>> <brian.matilla at noaa.gov> wrote:
>>>
>>> Hi Tatiana,
>>>
>>> Thanks for the updated information. I’ve passed it on to our DB
admin
>>> and he is currently working on getting that taken care of. I will
let
>>> you know of any questions or issues that pop up.
>>>
>>> -Brian
>>>> On Dec 16, 2019, at 8:54 AM, Tatiana Burek via RT
>>>> <met_help at ucar.edu> wrote:
>>>>
>>>> Brian,
>>>> I released that my answer is not incomplete.
>>>> As a database user you would need more privileges than SELECT and
>>>> TEMPORARY TABLES.
>>>> You should ask for all privileges:
>>>> GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
>>>> or individual:
>>>> GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
>>>> '<user_name>'@'%';
>>>>
>>>> Tatiana
>>>>
>>>> On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
>>>>> Hi Tatiana,
>>>>>
>>>>> Thanks for such a quick reply. Our admin is out for the day so
I’ll
>>>>> follow up with you on this after the weekend once I can relay
this
>>>>> information to him and keep you posted with other questions
then.
>>>>>
>>>>> -Brian
>>>>>> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
>>>>>> <met_help at ucar.edu>
>>>>>> wrote:
>>>>>>
>>>>>> Hi Brian,
>>>>>>
>>>>>> In load XML file there is a tag <user> where you specify the
user
>>>>>> name that will be used to load data to <database>.
>>>>>> Make sure this user has following privileges to all table in
this
>>>>>> database:
>>>>>> SELECT
>>>>>> CREATE TEMPORARY TABLES
>>>>>> To apply these privileges run the following command as DB
admin:
>>>>>> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
>>>>>> '<user_name>'@'%';
>>>>>>
>>>>>> Tatiana
>>>>>>
>>>>>> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
>>>>>>> Hi MET helpdesk,
>>>>>>>
>>>>>>> I hope this email finds you well. So my new question pertains
to
>>>>>>> METviewer — we recently set up METviewer on our machine within
>>>>>>> the
>>>>>>> department and I have written up an xml script to perform a
load
>>>>>>> test
>>>>>>> of stat files from my verification work using “mv_load".
However,
>>>>>>> I
>>>>>>> attempt to load the data only to get an error saying that
access
>>>>>>> is
>>>>>>> denied for me, the user. Is there any type of permission I’ll
>>>>>>> need
>>>>>>> to
>>>>>>> obtain to be able to upload my database to the METviewer web
app?
>>>>>>> Any
>>>>>>> help with this matter is of course greatly appreciated.
>>>>>>>
>>>>>>> Thanks!
>>>>>>>
>>>>>>> -Brian
>>>>>>> —————————————————————
>>>>>>> Brian Matilla
>>>>>>> Research Fellow— Warn-on-Forecast Team
>>>>>>> Cooperative Institute for Mesoscale Meteorological Studies —
The
>>>>>>> University of Oklahoma
>>>>>>> NOAA National Severe Storms Laboratory
>>>>>>>
>>>>>>> Phone: (405) 325-1688
>>>>>>
>>>>>>
>>>>>>
>>>>
>>>>
>>>>
>>>
>
>
>



------------------------------------------------
Subject: METViewer connection "access denied"
From: Tatiana Burek
Time: Wed Jan 08 12:44:22 2020

Brian

What is the URL of your METviewer web app instance?

Tatiana

On Wed Jan 08 12:30:29 2020, brian.matilla at noaa.gov wrote:
> I did try that, however I still cannot see my database on the
> METviewer page. Just in case, I also cleared my browser cache and
went
> to the METviewer page and the database is not present. Would you
> happen to know if it is visible on your end? The database name is:
> “mv_2018_FFaIR_WoFS”.
>
> -Brian
> > On Jan 8, 2020, at 8:36 AM, Tatiana Burek via RT
<met_help at ucar.edu>
> > wrote:
> >
> > Hi Brian
> >
> > Each time you add a new database or data to the existing database
it
> > is recommended to clear the application cache by clinking on
"Reload
> > databases" button in the right corner of METviewer page and reload
> > the browser window.
> >
> > METviewer caches some metadata including the list of databases for
> > the performance purposes and these actions would clear the cached
> > values.
> >
> > Let me know if this helpes and you can select your database from
the
> > drop-down menu.
> >
> > Tatiana
> >
> >
> > On Tue Jan 07 11:46:37 2020, brian.matilla at noaa.gov wrote:
> >> Hello Tatiana,
> >>
> >> First off, happy new year! Our database admin created the
database
> >> privileges I need and a mv_load test of some grid_stat data
worked
> >> without error. However, I can’t seem to see the mv database
listed
> >> on
> >> the METviewer website. Do I need to specify anything else in the
> >> “mv_load” command for that to work?
> >>
> >> Thanks!
> >>
> >> -Brian
> >>> On Dec 17, 2019, at 9:58 AM, Brian Matilla - NOAA Affiliate
> >>> <brian.matilla at noaa.gov> wrote:
> >>>
> >>> Hi Tatiana,
> >>>
> >>> Thanks for the updated information. I’ve passed it on to our DB
> >>> admin
> >>> and he is currently working on getting that taken care of. I
will
> >>> let
> >>> you know of any questions or issues that pop up.
> >>>
> >>> -Brian
> >>>> On Dec 16, 2019, at 8:54 AM, Tatiana Burek via RT
> >>>> <met_help at ucar.edu> wrote:
> >>>>
> >>>> Brian,
> >>>> I released that my answer is not incomplete.
> >>>> As a database user you would need more privileges than SELECT
and
> >>>> TEMPORARY TABLES.
> >>>> You should ask for all privileges:
> >>>> GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
> >>>> or individual:
> >>>> GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
> >>>> '<user_name>'@'%';
> >>>>
> >>>> Tatiana
> >>>>
> >>>> On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
> >>>>> Hi Tatiana,
> >>>>>
> >>>>> Thanks for such a quick reply. Our admin is out for the day so
> >>>>> I’ll
> >>>>> follow up with you on this after the weekend once I can relay
> >>>>> this
> >>>>> information to him and keep you posted with other questions
then.
> >>>>>
> >>>>> -Brian
> >>>>>> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
> >>>>>> <met_help at ucar.edu>
> >>>>>> wrote:
> >>>>>>
> >>>>>> Hi Brian,
> >>>>>>
> >>>>>> In load XML file there is a tag <user> where you specify the
> >>>>>> user
> >>>>>> name that will be used to load data to <database>.
> >>>>>> Make sure this user has following privileges to all table in
> >>>>>> this
> >>>>>> database:
> >>>>>> SELECT
> >>>>>> CREATE TEMPORARY TABLES
> >>>>>> To apply these privileges run the following command as DB
admin:
> >>>>>> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
> >>>>>> '<user_name>'@'%';
> >>>>>>
> >>>>>> Tatiana
> >>>>>>
> >>>>>> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
> >>>>>>> Hi MET helpdesk,
> >>>>>>>
> >>>>>>> I hope this email finds you well. So my new question
pertains
> >>>>>>> to
> >>>>>>> METviewer — we recently set up METviewer on our machine
within
> >>>>>>> the
> >>>>>>> department and I have written up an xml script to perform a
> >>>>>>> load
> >>>>>>> test
> >>>>>>> of stat files from my verification work using “mv_load".
> >>>>>>> However,
> >>>>>>> I
> >>>>>>> attempt to load the data only to get an error saying that
> >>>>>>> access
> >>>>>>> is
> >>>>>>> denied for me, the user. Is there any type of permission
I’ll
> >>>>>>> need
> >>>>>>> to
> >>>>>>> obtain to be able to upload my database to the METviewer web
> >>>>>>> app?
> >>>>>>> Any
> >>>>>>> help with this matter is of course greatly appreciated.
> >>>>>>>
> >>>>>>> Thanks!
> >>>>>>>
> >>>>>>> -Brian
> >>>>>>> —————————————————————
> >>>>>>> Brian Matilla
> >>>>>>> Research Fellow— Warn-on-Forecast Team
> >>>>>>> Cooperative Institute for Mesoscale Meteorological Studies —
> >>>>>>> The
> >>>>>>> University of Oklahoma
> >>>>>>> NOAA National Severe Storms Laboratory
> >>>>>>>
> >>>>>>> Phone: (405) 325-1688
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>
> >>>>
> >>>>
> >>>
> >
> >
> >



------------------------------------------------
Subject: METViewer connection "access denied"
From: Brian Matilla - NOAA Affiliate
Time: Thu Jan 09 09:28:55 2020

Hi Tatiana,

It should be
http://www.dtcenter.org/met/metviewer/metviewer1.jsp?db=mv_2018_FFaIR_WoFS
<http://www.dtcenter.org/met/metviewer/metviewer1.jsp?db=mv_2018_FFaIR_WoFS>.

-Brian
> On Jan 8, 2020, at 1:44 PM, Tatiana Burek via RT <met_help at ucar.edu>
wrote:
>
> Brian
>
> What is the URL of your METviewer web app instance?
>
> Tatiana
>
> On Wed Jan 08 12:30:29 2020, brian.matilla at noaa.gov wrote:
>> I did try that, however I still cannot see my database on the
>> METviewer page. Just in case, I also cleared my browser cache and
went
>> to the METviewer page and the database is not present. Would you
>> happen to know if it is visible on your end? The database name is:
>> “mv_2018_FFaIR_WoFS”.
>>
>> -Brian
>>> On Jan 8, 2020, at 8:36 AM, Tatiana Burek via RT
<met_help at ucar.edu>
>>> wrote:
>>>
>>> Hi Brian
>>>
>>> Each time you add a new database or data to the existing database
it
>>> is recommended to clear the application cache by clinking on
"Reload
>>> databases" button in the right corner of METviewer page and reload
>>> the browser window.
>>>
>>> METviewer caches some metadata including the list of databases for
>>> the performance purposes and these actions would clear the cached
>>> values.
>>>
>>> Let me know if this helpes and you can select your database from
the
>>> drop-down menu.
>>>
>>> Tatiana
>>>
>>>
>>> On Tue Jan 07 11:46:37 2020, brian.matilla at noaa.gov wrote:
>>>> Hello Tatiana,
>>>>
>>>> First off, happy new year! Our database admin created the
database
>>>> privileges I need and a mv_load test of some grid_stat data
worked
>>>> without error. However, I can’t seem to see the mv database
listed
>>>> on
>>>> the METviewer website. Do I need to specify anything else in the
>>>> “mv_load” command for that to work?
>>>>
>>>> Thanks!
>>>>
>>>> -Brian
>>>>> On Dec 17, 2019, at 9:58 AM, Brian Matilla - NOAA Affiliate
>>>>> <brian.matilla at noaa.gov> wrote:
>>>>>
>>>>> Hi Tatiana,
>>>>>
>>>>> Thanks for the updated information. I’ve passed it on to our DB
>>>>> admin
>>>>> and he is currently working on getting that taken care of. I
will
>>>>> let
>>>>> you know of any questions or issues that pop up.
>>>>>
>>>>> -Brian
>>>>>> On Dec 16, 2019, at 8:54 AM, Tatiana Burek via RT
>>>>>> <met_help at ucar.edu> wrote:
>>>>>>
>>>>>> Brian,
>>>>>> I released that my answer is not incomplete.
>>>>>> As a database user you would need more privileges than SELECT
and
>>>>>> TEMPORARY TABLES.
>>>>>> You should ask for all privileges:
>>>>>> GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
>>>>>> or individual:
>>>>>> GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
>>>>>> '<user_name>'@'%';
>>>>>>
>>>>>> Tatiana
>>>>>>
>>>>>> On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
>>>>>>> Hi Tatiana,
>>>>>>>
>>>>>>> Thanks for such a quick reply. Our admin is out for the day so
>>>>>>> I’ll
>>>>>>> follow up with you on this after the weekend once I can relay
>>>>>>> this
>>>>>>> information to him and keep you posted with other questions
then.
>>>>>>>
>>>>>>> -Brian
>>>>>>>> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
>>>>>>>> <met_help at ucar.edu>
>>>>>>>> wrote:
>>>>>>>>
>>>>>>>> Hi Brian,
>>>>>>>>
>>>>>>>> In load XML file there is a tag <user> where you specify the
>>>>>>>> user
>>>>>>>> name that will be used to load data to <database>.
>>>>>>>> Make sure this user has following privileges to all table in
>>>>>>>> this
>>>>>>>> database:
>>>>>>>> SELECT
>>>>>>>> CREATE TEMPORARY TABLES
>>>>>>>> To apply these privileges run the following command as DB
admin:
>>>>>>>> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
>>>>>>>> '<user_name>'@'%';
>>>>>>>>
>>>>>>>> Tatiana
>>>>>>>>
>>>>>>>> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
>>>>>>>>> Hi MET helpdesk,
>>>>>>>>>
>>>>>>>>> I hope this email finds you well. So my new question
pertains
>>>>>>>>> to
>>>>>>>>> METviewer — we recently set up METviewer on our machine
within
>>>>>>>>> the
>>>>>>>>> department and I have written up an xml script to perform a
>>>>>>>>> load
>>>>>>>>> test
>>>>>>>>> of stat files from my verification work using “mv_load".
>>>>>>>>> However,
>>>>>>>>> I
>>>>>>>>> attempt to load the data only to get an error saying that
>>>>>>>>> access
>>>>>>>>> is
>>>>>>>>> denied for me, the user. Is there any type of permission
I’ll
>>>>>>>>> need
>>>>>>>>> to
>>>>>>>>> obtain to be able to upload my database to the METviewer web
>>>>>>>>> app?
>>>>>>>>> Any
>>>>>>>>> help with this matter is of course greatly appreciated.
>>>>>>>>>
>>>>>>>>> Thanks!
>>>>>>>>>
>>>>>>>>> -Brian
>>>>>>>>> —————————————————————
>>>>>>>>> Brian Matilla
>>>>>>>>> Research Fellow— Warn-on-Forecast Team
>>>>>>>>> Cooperative Institute for Mesoscale Meteorological Studies —
>>>>>>>>> The
>>>>>>>>> University of Oklahoma
>>>>>>>>> NOAA National Severe Storms Laboratory
>>>>>>>>>
>>>>>>>>> Phone: (405) 325-1688
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>
>>>
>>>
>
>
>


------------------------------------------------
Subject: METViewer connection "access denied"
From: Tatiana Burek
Time: Thu Jan 09 09:51:39 2020

Brian
This url is for the RAL instance of METviewer which is connected to
the database running on our server.
My understanding was that you created your own instance of METviewer
and database and load your data into it. If this is true, RAL
METviewer can't access your database and show data. You need to run
separate METviewer web app that connects to your database.

Where is the location of your database?

Tatiana


On Thu Jan 09 09:28:55 2020, brian.matilla at noaa.gov wrote:
> Hi Tatiana,
>
> It should be
>
http://www.dtcenter.org/met/metviewer/metviewer1.jsp?db=mv_2018_FFaIR_WoFS
>
<http://www.dtcenter.org/met/metviewer/metviewer1.jsp?db=mv_2018_FFaIR_WoFS>.
>
> -Brian
> > On Jan 8, 2020, at 1:44 PM, Tatiana Burek via RT
<met_help at ucar.edu>
> > wrote:
> >
> > Brian
> >
> > What is the URL of your METviewer web app instance?
> >
> > Tatiana
> >
> > On Wed Jan 08 12:30:29 2020, brian.matilla at noaa.gov wrote:
> >> I did try that, however I still cannot see my database on the
> >> METviewer page. Just in case, I also cleared my browser cache and
> >> went
> >> to the METviewer page and the database is not present. Would you
> >> happen to know if it is visible on your end? The database name
is:
> >> “mv_2018_FFaIR_WoFS”.
> >>
> >> -Brian
> >>> On Jan 8, 2020, at 8:36 AM, Tatiana Burek via RT
> >>> <met_help at ucar.edu>
> >>> wrote:
> >>>
> >>> Hi Brian
> >>>
> >>> Each time you add a new database or data to the existing
database
> >>> it
> >>> is recommended to clear the application cache by clinking on
> >>> "Reload
> >>> databases" button in the right corner of METviewer page and
reload
> >>> the browser window.
> >>>
> >>> METviewer caches some metadata including the list of databases
for
> >>> the performance purposes and these actions would clear the
cached
> >>> values.
> >>>
> >>> Let me know if this helpes and you can select your database from
> >>> the
> >>> drop-down menu.
> >>>
> >>> Tatiana
> >>>
> >>>
> >>> On Tue Jan 07 11:46:37 2020, brian.matilla at noaa.gov wrote:
> >>>> Hello Tatiana,
> >>>>
> >>>> First off, happy new year! Our database admin created the
database
> >>>> privileges I need and a mv_load test of some grid_stat data
worked
> >>>> without error. However, I can’t seem to see the mv database
listed
> >>>> on
> >>>> the METviewer website. Do I need to specify anything else in
the
> >>>> “mv_load” command for that to work?
> >>>>
> >>>> Thanks!
> >>>>
> >>>> -Brian
> >>>>> On Dec 17, 2019, at 9:58 AM, Brian Matilla - NOAA Affiliate
> >>>>> <brian.matilla at noaa.gov> wrote:
> >>>>>
> >>>>> Hi Tatiana,
> >>>>>
> >>>>> Thanks for the updated information. I’ve passed it on to our
DB
> >>>>> admin
> >>>>> and he is currently working on getting that taken care of. I
will
> >>>>> let
> >>>>> you know of any questions or issues that pop up.
> >>>>>
> >>>>> -Brian
> >>>>>> On Dec 16, 2019, at 8:54 AM, Tatiana Burek via RT
> >>>>>> <met_help at ucar.edu> wrote:
> >>>>>>
> >>>>>> Brian,
> >>>>>> I released that my answer is not incomplete.
> >>>>>> As a database user you would need more privileges than SELECT
> >>>>>> and
> >>>>>> TEMPORARY TABLES.
> >>>>>> You should ask for all privileges:
> >>>>>> GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
> >>>>>> or individual:
> >>>>>> GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
> >>>>>> '<user_name>'@'%';
> >>>>>>
> >>>>>> Tatiana
> >>>>>>
> >>>>>> On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
> >>>>>>> Hi Tatiana,
> >>>>>>>
> >>>>>>> Thanks for such a quick reply. Our admin is out for the day
so
> >>>>>>> I’ll
> >>>>>>> follow up with you on this after the weekend once I can
relay
> >>>>>>> this
> >>>>>>> information to him and keep you posted with other questions
> >>>>>>> then.
> >>>>>>>
> >>>>>>> -Brian
> >>>>>>>> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
> >>>>>>>> <met_help at ucar.edu>
> >>>>>>>> wrote:
> >>>>>>>>
> >>>>>>>> Hi Brian,
> >>>>>>>>
> >>>>>>>> In load XML file there is a tag <user> where you specify
the
> >>>>>>>> user
> >>>>>>>> name that will be used to load data to <database>.
> >>>>>>>> Make sure this user has following privileges to all table
in
> >>>>>>>> this
> >>>>>>>> database:
> >>>>>>>> SELECT
> >>>>>>>> CREATE TEMPORARY TABLES
> >>>>>>>> To apply these privileges run the following command as DB
> >>>>>>>> admin:
> >>>>>>>> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
> >>>>>>>> '<user_name>'@'%';
> >>>>>>>>
> >>>>>>>> Tatiana
> >>>>>>>>
> >>>>>>>> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
> >>>>>>>>> Hi MET helpdesk,
> >>>>>>>>>
> >>>>>>>>> I hope this email finds you well. So my new question
pertains
> >>>>>>>>> to
> >>>>>>>>> METviewer — we recently set up METviewer on our machine
> >>>>>>>>> within
> >>>>>>>>> the
> >>>>>>>>> department and I have written up an xml script to perform
a
> >>>>>>>>> load
> >>>>>>>>> test
> >>>>>>>>> of stat files from my verification work using “mv_load".
> >>>>>>>>> However,
> >>>>>>>>> I
> >>>>>>>>> attempt to load the data only to get an error saying that
> >>>>>>>>> access
> >>>>>>>>> is
> >>>>>>>>> denied for me, the user. Is there any type of permission
I’ll
> >>>>>>>>> need
> >>>>>>>>> to
> >>>>>>>>> obtain to be able to upload my database to the METviewer
web
> >>>>>>>>> app?
> >>>>>>>>> Any
> >>>>>>>>> help with this matter is of course greatly appreciated.
> >>>>>>>>>
> >>>>>>>>> Thanks!
> >>>>>>>>>
> >>>>>>>>> -Brian
> >>>>>>>>> —————————————————————
> >>>>>>>>> Brian Matilla
> >>>>>>>>> Research Fellow— Warn-on-Forecast Team
> >>>>>>>>> Cooperative Institute for Mesoscale Meteorological Studies
—
> >>>>>>>>> The
> >>>>>>>>> University of Oklahoma
> >>>>>>>>> NOAA National Severe Storms Laboratory
> >>>>>>>>>
> >>>>>>>>> Phone: (405) 325-1688
> >>>>>>>>
> >>>>>>>>
> >>>>>>>>
> >>>>>>
> >>>>>>
> >>>>>>
> >>>>>
> >>>
> >>>
> >>>
> >
> >
> >



------------------------------------------------
Subject: METViewer connection "access denied"
From: Brian Matilla - NOAA Affiliate
Time: Wed Jan 22 10:52:54 2020

Hi Tatiana,

First, apologies for the terribly long delay in getting back to you.
I’m working with our admin to get the web app to run on our server.
Once we work that out, I’ll test on my end and all should be working
then. I can always get back in touch regarding this if there are any
issues. Otherwise, I think we’ve managed to get the rest of the
METviewer suite to work perfectly.

As always, many thanks for your help and support!

-Brian
—————————————————————
Brian Matilla
Research Fellow— Warn-on-Forecast Team
Cooperative Institute for Mesoscale Meteorological Studies — The
University of Oklahoma
NOAA National Severe Storms Laboratory

Phone: (405) 325-1688


> On Jan 9, 2020, at 10:51 AM, Tatiana Burek via RT
<met_help at ucar.edu> wrote:
>
> Brian
> This url is for the RAL instance of METviewer which is connected to
the database running on our server.
> My understanding was that you created your own instance of METviewer
and database and load your data into it. If this is true, RAL
METviewer can't access your database and show data. You need to run
separate METviewer web app that connects to your database.
>
> Where is the location of your database?
>
> Tatiana
>
>
> On Thu Jan 09 09:28:55 2020, brian.matilla at noaa.gov wrote:
>> Hi Tatiana,
>>
>> It should be
>>
http://www.dtcenter.org/met/metviewer/metviewer1.jsp?db=mv_2018_FFaIR_WoFS
>>
<http://www.dtcenter.org/met/metviewer/metviewer1.jsp?db=mv_2018_FFaIR_WoFS>.
>>
>> -Brian
>>> On Jan 8, 2020, at 1:44 PM, Tatiana Burek via RT
<met_help at ucar.edu>
>>> wrote:
>>>
>>> Brian
>>>
>>> What is the URL of your METviewer web app instance?
>>>
>>> Tatiana
>>>
>>> On Wed Jan 08 12:30:29 2020, brian.matilla at noaa.gov wrote:
>>>> I did try that, however I still cannot see my database on the
>>>> METviewer page. Just in case, I also cleared my browser cache and
>>>> went
>>>> to the METviewer page and the database is not present. Would you
>>>> happen to know if it is visible on your end? The database name
is:
>>>> “mv_2018_FFaIR_WoFS”.
>>>>
>>>> -Brian
>>>>> On Jan 8, 2020, at 8:36 AM, Tatiana Burek via RT
>>>>> <met_help at ucar.edu>
>>>>> wrote:
>>>>>
>>>>> Hi Brian
>>>>>
>>>>> Each time you add a new database or data to the existing
database
>>>>> it
>>>>> is recommended to clear the application cache by clinking on
>>>>> "Reload
>>>>> databases" button in the right corner of METviewer page and
reload
>>>>> the browser window.
>>>>>
>>>>> METviewer caches some metadata including the list of databases
for
>>>>> the performance purposes and these actions would clear the
cached
>>>>> values.
>>>>>
>>>>> Let me know if this helpes and you can select your database from
>>>>> the
>>>>> drop-down menu.
>>>>>
>>>>> Tatiana
>>>>>
>>>>>
>>>>> On Tue Jan 07 11:46:37 2020, brian.matilla at noaa.gov wrote:
>>>>>> Hello Tatiana,
>>>>>>
>>>>>> First off, happy new year! Our database admin created the
database
>>>>>> privileges I need and a mv_load test of some grid_stat data
worked
>>>>>> without error. However, I can’t seem to see the mv database
listed
>>>>>> on
>>>>>> the METviewer website. Do I need to specify anything else in
the
>>>>>> “mv_load” command for that to work?
>>>>>>
>>>>>> Thanks!
>>>>>>
>>>>>> -Brian
>>>>>>> On Dec 17, 2019, at 9:58 AM, Brian Matilla - NOAA Affiliate
>>>>>>> <brian.matilla at noaa.gov> wrote:
>>>>>>>
>>>>>>> Hi Tatiana,
>>>>>>>
>>>>>>> Thanks for the updated information. I’ve passed it on to our
DB
>>>>>>> admin
>>>>>>> and he is currently working on getting that taken care of. I
will
>>>>>>> let
>>>>>>> you know of any questions or issues that pop up.
>>>>>>>
>>>>>>> -Brian
>>>>>>>> On Dec 16, 2019, at 8:54 AM, Tatiana Burek via RT
>>>>>>>> <met_help at ucar.edu> wrote:
>>>>>>>>
>>>>>>>> Brian,
>>>>>>>> I released that my answer is not incomplete.
>>>>>>>> As a database user you would need more privileges than SELECT
>>>>>>>> and
>>>>>>>> TEMPORARY TABLES.
>>>>>>>> You should ask for all privileges:
>>>>>>>> GRANT ALL PRIVILEGES ON <db_name>.* to '<user_name>'@'%';
>>>>>>>> or individual:
>>>>>>>> GRANT INSERT, DELETE, UPDATE , INDEX, DROP ON <db_name>.* to
>>>>>>>> '<user_name>'@'%';
>>>>>>>>
>>>>>>>> Tatiana
>>>>>>>>
>>>>>>>> On Fri Dec 13 15:45:06 2019, brian.matilla at noaa.gov wrote:
>>>>>>>>> Hi Tatiana,
>>>>>>>>>
>>>>>>>>> Thanks for such a quick reply. Our admin is out for the day
so
>>>>>>>>> I’ll
>>>>>>>>> follow up with you on this after the weekend once I can
relay
>>>>>>>>> this
>>>>>>>>> information to him and keep you posted with other questions
>>>>>>>>> then.
>>>>>>>>>
>>>>>>>>> -Brian
>>>>>>>>>> On Dec 13, 2019, at 4:19 PM, Tatiana Burek via RT
>>>>>>>>>> <met_help at ucar.edu>
>>>>>>>>>> wrote:
>>>>>>>>>>
>>>>>>>>>> Hi Brian,
>>>>>>>>>>
>>>>>>>>>> In load XML file there is a tag <user> where you specify
the
>>>>>>>>>> user
>>>>>>>>>> name that will be used to load data to <database>.
>>>>>>>>>> Make sure this user has following privileges to all table
in
>>>>>>>>>> this
>>>>>>>>>> database:
>>>>>>>>>> SELECT
>>>>>>>>>> CREATE TEMPORARY TABLES
>>>>>>>>>> To apply these privileges run the following command as DB
>>>>>>>>>> admin:
>>>>>>>>>> GRANT SELECT, CREATE TEMPORARY TABLES ON <db_name>.* to
>>>>>>>>>> '<user_name>'@'%';
>>>>>>>>>>
>>>>>>>>>> Tatiana
>>>>>>>>>>
>>>>>>>>>> On Fri Dec 13 15:09:22 2019, brian.matilla at noaa.gov wrote:
>>>>>>>>>>> Hi MET helpdesk,
>>>>>>>>>>>
>>>>>>>>>>> I hope this email finds you well. So my new question
pertains
>>>>>>>>>>> to
>>>>>>>>>>> METviewer — we recently set up METviewer on our machine
>>>>>>>>>>> within
>>>>>>>>>>> the
>>>>>>>>>>> department and I have written up an xml script to perform
a
>>>>>>>>>>> load
>>>>>>>>>>> test
>>>>>>>>>>> of stat files from my verification work using “mv_load".
>>>>>>>>>>> However,
>>>>>>>>>>> I
>>>>>>>>>>> attempt to load the data only to get an error saying that
>>>>>>>>>>> access
>>>>>>>>>>> is
>>>>>>>>>>> denied for me, the user. Is there any type of permission
I’ll
>>>>>>>>>>> need
>>>>>>>>>>> to
>>>>>>>>>>> obtain to be able to upload my database to the METviewer
web
>>>>>>>>>>> app?
>>>>>>>>>>> Any
>>>>>>>>>>> help with this matter is of course greatly appreciated.
>>>>>>>>>>>
>>>>>>>>>>> Thanks!
>>>>>>>>>>>
>>>>>>>>>>> -Brian
>>>>>>>>>>> —————————————————————
>>>>>>>>>>> Brian Matilla
>>>>>>>>>>> Research Fellow— Warn-on-Forecast Team
>>>>>>>>>>> Cooperative Institute for Mesoscale Meteorological Studies
—
>>>>>>>>>>> The
>>>>>>>>>>> University of Oklahoma
>>>>>>>>>>> NOAA National Severe Storms Laboratory
>>>>>>>>>>>
>>>>>>>>>>> Phone: (405) 325-1688
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>
>>>>>
>>>>>
>>>
>>>
>>>
>
>
>


------------------------------------------------


More information about the Met_help mailing list