Difference between revisions of "Amahi Create Manual Greyhole Setup"

From Amahi Wiki
Jump to: navigation, search
m (Make manual instructions visible again - users should have the option to run Greyhole manually when the GUI costs $25.)
Line 5: Line 5:
 
message =  
 
message =  
 
Amahi application [https://www.amahi.org/apps/greyhole-ui Greyhole UI] provides this capability.}}
 
Amahi application [https://www.amahi.org/apps/greyhole-ui Greyhole UI] provides this capability.}}
 
 
The following guidance is provided to assist users with setting up [[Greyhole]] in Amahi 7.  This has been tested with no issues, however the recommended method of install is via [https://www.amahi.org/apps/greyhole-ui Greyhole UI] plugin with dashboard integration.
 
The following guidance is provided to assist users with setting up [[Greyhole]] in Amahi 7.  This has been tested with no issues, however the recommended method of install is via [https://www.amahi.org/apps/greyhole-ui Greyhole UI] plugin with dashboard integration.
  
Line 48: Line 47:
  
 
* If you intend to modify or work with your files locally on the HDA, refer to [[Mount_Shares_Locally|Mount Shares Locally]] for guidance.
 
* If you intend to modify or work with your files locally on the HDA, refer to [[Mount_Shares_Locally|Mount Shares Locally]] for guidance.
 +
  
 
Return to [[Amahi_7_installation|Amahi 7 Installation]] page.
 
Return to [[Amahi_7_installation|Amahi 7 Installation]] page.

Revision as of 05:52, 1 September 2014

Warning.png WARNING
Amahi application Greyhole UI provides this capability.


The following guidance is provided to assist users with setting up Greyhole in Amahi 7. This has been tested with no issues, however the recommended method of install is via Greyhole UI plugin with dashboard integration.

NOTE: There is no guarantee this will work for you or not cause problems with your Amahi 7 install. Please proceed with caution as carelessness could cause data loss. Also you might want to check out the Greyhole wiki page for additional information, such as working with shares locally on the HDA.

As root user, perform the following steps:

  • Install the package:
yum -y install amahi-greyhole
  • Set up a mysql database and user to access it:
hda-create-db-and-user greyhole
  • Load the database schema:
mysql -u greyhole -pgreyhole  greyhole < /usr/share/greyhole/schema-mysql.sql

Initialize the basic settings for Greyhole, configure /etc/greyhole.conf:

  • Make sure the settings for the database are correct: db_user and db_password should be greyhole
  • Add a line for each drive in the storage pool at the end of the file. The example below is for two drives:
storage_pool_drive = /var/hda/files/drives/drive2/gh, min_free: 10gb
storage_pool_drive = /var/hda/files/drives/drive3/gh, min_free: 10gb
NOTE: If you have not initialized your newly added hard drives, refer to adding new hard drives.

NOTE: Although the /etc/greyhole.conf contents indicate storage_pool_drive, it should be storage_pool_directory. If you don't set it correctly, Greyhole will not work.

  • Now configure the number of copies per share. The example below sets the shares as follows:
    • Books: max copies (which is 2 for 2 drives)
    • Pictures: 2 copies (i.e. 1 extra copy)
    • Movies: no extra copies (data loss will occur if one of your drive fails)
num_copies[Books] = max
num_copies[Pictures] = 2
num_copies[Movies] = 1
  • In the Dashboard, Shares tab add the following to Extra Parameters for each share you will be configuring to use Greyhole:
dfree command = /usr/bin/greyhole-dfree
vfs objects = greyhole
  • Finally, enable greyhole permanently and start the service:
systemctl enable amahi-greyhole.service
systemctl start amahi-greyhole.service
  • You can monitor activity by watching /var/log/greyhole.log file:
tail -f /var/log/greyhole.log
  • If you intend to modify or work with your files locally on the HDA, refer to Mount Shares Locally for guidance.


Return to Amahi 7 Installation page.