Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

Install/Use with limited rights

Locked
fams
Posts: 2
Joined: Sat Nov 03, 2012 6:55 pm

Install/Use with limited rights

Unread post by fams »

Hello,
I've got a mysql database and Apache space from my IT department. The fixed mysql user has no grant and add_user rights.
Might it be possible to install and use nuBuilder under that circumstances? Mybe without separate users and only the given mysql-user as globe admin?

thank you
fams
mike
Posts: 3
Joined: Thu Oct 04, 2012 2:51 am

Re: Install/Use with limited rights

Unread post by mike »

Hi Fams,


Which version of nuBuilder are you trying to install? Is it the ZIP version? You can work around the problem by opening sample.sql in a text editor and commenting out the following lines:

Code: Select all

CREATE USER 'sample'@'localhost' IDENTIFIED BY 'samplepass';
GRANT ALL PRIVILEGES ON `sample` . * TO 'sample'@'localhost' WITH GRANT OPTION;
Becomes:

Code: Select all

//CREATE USER 'sample'@'localhost' IDENTIFIED BY 'samplepass';
//GRANT ALL PRIVILEGES ON `sample` . * TO 'sample'@'localhost' WITH GRANT OPTION;

Then you can run the database import again. When you get to the step of configuring the MySQL username and password, you can use whatever your IT department gave you.

Let us know if you need anymore help with the install.


Regards,
Mike
fams
Posts: 2
Joined: Sat Nov 03, 2012 6:55 pm

Re: Install/Use with limited rights

Unread post by fams »

Thank you for your reply, I can't test it before end of week.
I've installed nuBuilder on a standalone pc and recognized that there is a user management. I haven't looked into code, but I thought that nuBuilder uses mysql user management. From your reply I understand, that even the "globe admin" did not need grant or add user rights and therefore nuBuilder uses his own user management?
thanks
fams
admin
Site Admin
Posts: 2814
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 25 times

Re: Install/Use with limited rights

Unread post by admin »

.
Locked