Server Build Advice

Hi,

I would like to build a new server focused to host single domain only with httpd + MySQL.
  1. Which filesystem is the best for hosting PHP files with some static files? I'm considering about EXT4 or XFS or perhaps UFS?
  2. Can we use MariaDB on FreeBSD 10.1?
  3. What is the best file system for SQL? Is it EXT4 or XFS or perhaps UFS again?
Any advice would be appreciated. Thank you!
 
Last edited by a moderator:
Hi,

I would like to build a new server focused to host single domain only with httpd + MySQL.

1. Which File System is the best for hosting PHP File with some static files? I'm considering about EXT4 or XFS or perhaps UFS?
Your bottle neck is network. I would be really surprised if somebody could come up with a valid argument which favours one over another file system for performance reasons in your particular set up. By the way you are on the wrong forum XFS is Silicon Mechanics file system which is used by the Linux (Red Hat 7.0) due to the lack of good native file system. Other file systems are Linux native file systems and should not be even used for data storage.

2. Can we use MariaDB with on FreeBSD 10.1?
Why not?

3. What is the best file system for SQL? Is it EXT4 or XFS or perhaps UFS again?

Any advice would be appreciated. Thank you!
This is actually an interesting question. Again Ext4 and XFS are not supported by FreeBSD (NetBSD I think can read XFS) but UFS is. So let me reformulate your question to fit this forum.
Which file system UFS or ZFS should I pick for SQL data base? Actually the answer is UFS due to the well known ZFS fragmentation with SQL https://bartsjerps.wordpress.com/2013/02/26/zfs-ora-database-fragmentation/
 
Back
Top