Rights granted to a user for a particular entity instance.
Questions tagged [access-rights]
266 questions
6
votes
4 answers
a design pattern or approach to handle access control of the fields of an object
as we know,in many OO program language ,we can use some access modifiers to specify the access scope of the fields inside an object .
for example, in java we can use public,protected or private to specify the access scope of a field ,for all of the…

柯鴻儀
- 613
- 1
- 10
- 25
6
votes
1 answer
Visual Studio Diagnostics session failed to start - What access rights are required to run Visual Studio 2013 Diagnostic
Visual Studio 2013 Diagnostics session failed to start:
Cannot load collector agent. Access is denied.
I would like to know what access rights are required to run Performance and Diagnostic tool

komizo
- 1,052
- 14
- 21
6
votes
2 answers
Write to C:\Program Files from Java program
I have written a Java application that includes a self updater. The self updater loads new program versions from a web server and replaces the application files. While this works perfectly if the application is installed e.g. in the users home…

user2662314
- 129
- 2
- 8
6
votes
1 answer
Why the file-test operator does not work (Perl)?
In "Programming Perl" -w file-test operator described as:
–w File is writable by effective UID/GID.
I have two files:
-rwsrwxrwx 1 testuser testuser 226 Jul 20 20:31 script.pl
-rw-rw-r-- 1 testuser testuser 34 Jul 14 17:24 file.txt
suid is set…

d.k
- 4,234
- 2
- 26
- 38
4
votes
2 answers
IIS ApplicationPoolIdentity 503 error
I've recently ported to a different hosting company (VDS), and on the new server, installed IIS 7.5 Express, latest versions of PHP and MySQL.
I then copied the files from the old server to new server (NOTHING beyond the content of the folders of my…

Can Poyrazoğlu
- 33,241
- 48
- 191
- 389
4
votes
2 answers
Stuck on moving GCP project to an organization
I'm trying to move a GCP project (on a private account) to a GCP organization that I manage. I know that I have to have the correct IAM rights, which I believe I do. I'm Owner, Folder Admin, Organization Administrator, Project Deleter and Project…

Daniel
- 41
- 1
- 2
4
votes
2 answers
Gitlab, how to configure project readonly to everybody except me
I want to configure access rights in a gitlab project so that everybody can view/clone/download files, but only I can write any file in the project.
In my understanding there is the role Guest, which should be configured to have readonly access.…

Frank Endriss
- 120
- 3
- 10
4
votes
1 answer
Built-in Administrator account has no rights for some actions in Windows 10
At some point I started getting following problems in Windows 10.
Microsoft Visual Studio 15 is showing the following error when I'm trying to run compiled Windows universal application:
Unable to activate Windows Store app ... The activation…

Sergey
- 1,552
- 20
- 18
4
votes
1 answer
Gulp Chmod Error after trying to overwrite file
I am trying to overwrite a file on a mac fileserver using:
gulp.dest('DESTINATIONPATH')
The Error:
Error: EACCES, chmod 'FILEPATH'
at Error (native)
The filepath is returning the path to the file that I want to overwrite.
I already tried…

Marten Zander
- 2,385
- 3
- 17
- 32
4
votes
0 answers
Python watchdog on network shares right issues
Im using python 2.7 on Windows 7 Enterprise SP1 with watchdog to watch some network shares for file changes. I have to networkshares on the same physical (assumed Linux) host that are connected to two different subfolders. So let's say I connected…

Dschoni
- 3,714
- 6
- 45
- 80
4
votes
1 answer
How to setup access rights inheritance in gerrit
We're have many projects (many repositories) and we're using gerrit for code reviews. Not all developers have access to all projects, and they may have different roles on different projects (developer, approver etc). Right now, every project has a…

kresho
- 136
- 1
- 8
4
votes
1 answer
Mongodb Admin cannot runCommand in another database (error code 13)
I've got some rights issues with mongoDB, I created a DB admin using the auth menthod, and this worked.
I can connect from a distant server to my DB without any warning, using the admin account I created with the role "userAdminAnyDatabase". But,…

Vodsky
- 41
- 4
4
votes
2 answers
requestedExecutionLevel requireAdministrator doesn't work as expected
I have an app.manifest file as following:

dmigo
- 2,849
- 4
- 41
- 62
4
votes
1 answer
Cross-schema view query possible with different access rights?
I'm currently using SQL Server 2012, and I have a question concerning cross-schema access with different access rights:
Let's say I have two schemas: UserSchema and TableSchema.
TableSchema contains of 2 tables, and this schema is accessible by an…

Darth_Sygnious
- 528
- 3
- 7
- 18
4
votes
1 answer
How to correctly set MemoryMappedFile security options in C#
My problem is NOT how to read/write to shared memory (MemoryMappedFiles) in C++/C#, but more on how to correctly set security option of the MemoryMappedFile in C# (and I'm quite new to C#, so forgive me if the question is silly).
I have a process…

Alberto Avanzi
- 61
- 1
- 7