|
We are using a rsync based backup for our Lonux servers which is fantastic. We rsync all our Linux server onto our large Linux base samba fileserver. Unfortunately that server is completely outdated and migrated over to Active Directory.
Now I'm stuck...
Answer Snippets (Read the full thread at serverfault):
(because Backup, as the share appears to be just another... .
Yeah, your SIDs won't match, etc.
Something completely crazy: start a Samba server on the Linux side, put out a share for administrative server, and then do a backup from the share.
|
|
Usually web projects start small, everything is on the one server. But if site becomes popular one server won't be enough.
So, since I don't have any experience in this, I'd like to get an idea of:
1. what kind of load means that I need to move my MySQL...
Started by sneg on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
If you need your site to remain up during ....
Once you have that in place and you're running on one server (database and front-end), you can .
Got about 3 times your lead time for a new server before your current infrastructure runs out).
|
|
How do I tell if a certain AD user has admin rights on a Server 2003 box? I'm using Enterprise Edition.
Started by Keng on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
It depends....
This post has a script that will enumerate the local admin group remotely .
You have to look in the Administrators group on the server.
Server local groups (such as a server's Administrators group) are not available via AD.
|
Ask your Facebook Friends
|
I have lost all passwords for a SQL Server instance, how do I give myself admin access again?
Started by Ben Aston on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
Open Configuration Manager
Stop the server instance
Right, click >> properties >> advanced >> startup parameters
Add "-m;" right at the start of the string ensuring there are no spaces anywhere in the string
Restart....
|
|
On Windows Server 2003, how do you grant a user account permission to log on as a service?
Started by Warren Pena on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
In the right pane, double click "Log on as a Service." You.
See this Technet article:
"Add the Log on as a service right to an account"
I found it for a local folder and select User Rights Assignment.
|
|
Talking about this security setting: link text
We have been having problems with the oracle 10g client on our Citrix servers. Through google I figured out that granting users this security right fixed the oracle problem. However, this right seems to be...
Started by Adam Towne on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
After finishing the install, put terminal server back into execute mode "change user /execute.
Put the terminal server into install mode like this "change to the setup.exe.
Uninstall the Oracle 10G client.
Policy.
|
|
I need to know the MAC to IP address mapping stored on DHCP server.
I don't want to use arp cache as that would require me to either broadcast ping (which is not allowed on windows) or ping the all possible ip address of subnet( which takes lot of time...
Started by Kazoom on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
In Windows Server 2008 (possibly for 2003 as well, but don't have access to a 2003 DHCP server right now to export them to a file & then you can right-click on addresses leases and select Export List with scanning and querying....
|
|
I recently bought a new domain and pointed it to another host. i decided to move to more powerful server so then the following day, I added an A record for my dedicated server 23.23.23.23 on my registrar. I have anotherdomain.com already running on this...
Started by omgwutishappening on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
From the description above, it sounds like this is probably down to dns server caching time.
|
|
I want to give a user access to a stored procedure, but not to all the objects in the database the stored procedure needs to use.
What is the best way to give rights to the stored procedure to enable it to work, but only grant execute access to the user...
Started by GordyII on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Try
exec grant exec ON 'myprocname' TO 'myusername'
From MSDN
Users can be granted permission to execute a stored procedure even if they do not have permission to execute the procedure's statements directly .
|
|
I just want to verify that I'm not missing something here... so bear with me.
I'm rewriting a lot of old stored procedures and keep seeing IF statements formatted similar to this:
begin if @someParameter <> 'ThisType' set @someCode = right(cast(...
Started by David J on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
END
You can safely change it to:
if @someParameter <> 'ThisType' begin set @someCode = right; 'ThisType' set @someCode = right(cast(@pYear as varchar(6)),2) + 'THIS'
There could be a statement a code block)
Would Work
if @someParameter....
|