Questions tagged [integrity]

9 questions
3
votes
1 answer

What is the best practice for logs integrity and authenticity?

We have hundreds of workstations, tens of servers, sending logs to a syslog server or Windows Event Collector server whether they come from Linux or Windows machines. At this point, logs integrity and confidentiality is managed by access rules and…
3
votes
2 answers

Automated test suite for linux servers and network devices?

Coming from a development background i'm used to automated (unit) testing before stuff goes live.Now i'd like to use the same approach to (new) linux (and some windows) servers and networkdevices. I want to be able to define tests / conditions…
3
votes
3 answers

Virtualisation: Running KVM, XEN or ... on an Integrity (ia64) server (with x86_64 guests)

We have a spare Integrity blade (2x Tukwila quad-core + 16Gb RAM) laying around which I would like to use has a Virtual Host for a couple of Linux VMs. I am having some concerns finding the best solutions for our situation (if a solution is possible…
skinp
  • 749
  • 1
  • 7
  • 19
2
votes
1 answer

How do I check the IaaS image hasn't been compromised

We are deploying in Chinese datacentre, it took us a while to get our account approved with Aliyun (some kind of Amazon AWS). We are protecting all in and out data transfer but what guarantees that the OS itself hasn't been compromised? How do I…
James Wong
  • 165
  • 8
2
votes
2 answers

How to check mongodb metadata's integrity?

I had to replace a mongodb config server in a cluster that contains only 1 shard. By mistake, I started the new config server without any data and got the following message in the logs: [CheckConfigServers] ERROR: could not verify that config…
Icu
  • 1,405
  • 2
  • 15
  • 25
2
votes
1 answer

Do we really need to perform MS SQL database integrity check regularly?

What's the benefit of performing regular database integrity checks? Can't we just perform it when there's a problem?
user1034912
  • 1,335
  • 3
  • 14
  • 20
2
votes
2 answers

Integrity, Confidentiality and VPS

I need to host a sensitive financial software somewhere. Given that I don't have the resource to locally host the software locally, I'm oriented toward a VPS or Dedicated server. How can I be sure that the hosting company doesn't steal my SSH…
Mascarpone
  • 872
  • 3
  • 9
  • 27
1
vote
0 answers

Does tcpdump guarantee packet integrity?

In normal use of tcpdump without any parameter, does it guarantee? tcpdump -i eth0 -w file.pcap In using tcpdump rotating by time with -G parameter, does it guarantee? tcpdump -i eth0 -w file.pcap -G 60 In both case, throughput is apprx 1Gbit
hakansel05
  • 11
  • 2
0
votes
1 answer

Replicate from slaves to master and viceversa

I've a great dilema here and didn't know how to solve it. I need to replicate a few tables from MySQL DB (slaves) to MySQL DB (master). Take as an example this: MySQL DB (master) table1 table2 table3 MySQL DB (slave1) table1 table2 …