When you try to access content on a server that is running Internet Information Services (IIS) 7.0 by using HTTP, IIS 7.0 returns a numeric code that indicates the status of the response. The HTTP status code is recorded in the IIS log. Additionally, the HTTP status code may be displayed in the client browser. […]
Month: November 2011
Mysql common questions and answers
CREATE USER CREATE USER ‘jeffrey’@’localhost’ IDENTIFIED BY ‘mypass’; Create user without password. CREATE USER ‘jeffrey’@’localhost’; DROP User DROP USER ‘jeffrey’@’localhost’; GRANT Steps: CREATE USER ‘jeffrey’@’localhost’ IDENTIFIED BY ‘mypass’; GRANT ALL ON db1.* TO ‘jeffrey’@’localhost’; GRANT SELECT ON db2.invoice TO ‘jeffrey’@’localhost’; GRANT USAGE ON *.* TO ‘jeffrey’@’localhost’ WITH MAX_QUERIES_PER_HOUR 90; RENAME USER RENAME USER ‘jeffrey’@’localhost’ TO […]
Q: How are device files represented in UNIX/Linux? A: All devices are represented as files called special files and are located in the /dev directory. Q: What is a inode? The inode(Index node) is a fundamental concept in Linux/Unix file systems. Each object in the file system is represented by an inode. Each and every […]