Project

General

Profile

Support #717

Install Firefox Sync Server on FreeBSD

Added by Daniel Curtis over 8 years ago. Updated about 8 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Sync Server
Target version:
Start date:
01/10/2016
Due date:
% Done:

100%

Estimated time:
1.00 h
Spent time:

Description

This is a guide on running the Firefox Sync-1.5 Server on FreeBSD 9.

Prepare the Environment

  • Make sure the system is up to date:
    pkg update && pkg upgrade -y
    
  • Install a few dependencies:
    pkg install git gmake python2 py27-virtualenv sqlite py27-sqlite3 gcc48
    
  • Add the Sync Server user
    pw add user -n ff-sync -m -s /bin/sh -c "Firefox Sync" 
    

Install Sync Server

  • Switch to the sync server user:
    su - ff-sync
    
  • Then set the CC, CXX, and CPP environment variables to use GCC instead of Clang:
    export CC=gcc48
    export CXX=g++48
    export CPP=cpp48
    
  • Download the sync server from GitHub:
    git clone https://github.com/mozilla-services/syncserver
    
  • Build the sync server:
    cd syncserver
    gmake build
    
  • Edit the syncserver config file:
    vi syncserver.ini
    
    • And uncomment the sqlite uri parameter:
      sqluri = sqlite:////home/ff-sync/syncserver.db
      
  • Test run the server:
    gmake serve
    
    • Ctrl+C to exit the server.

Configure Firefox

  1. To configure desktop Firefox to talk to your new Sync server, go to about:config
  2. search for identity.sync.tokenserver.uri and change its value to the URL of your server with a path of token/1.0/sync/1.5:
    identity.sync.tokenserver.uri: http://sync.example.com/token/1.0/sync/1.5

Resources

#1

Updated by Daniel Curtis over 8 years ago

  • Description updated (diff)
#2

Updated by Daniel Curtis over 8 years ago

  • Description updated (diff)
  • Status changed from New to In Progress
  • % Done changed from 0 to 50
#3

Updated by Daniel Curtis over 8 years ago

  • Status changed from In Progress to Resolved
  • % Done changed from 50 to 100
  • Estimated time changed from 2.00 h to 1.00 h
#4

Updated by Daniel Curtis about 8 years ago

  • Status changed from Resolved to Closed

Also available in: Atom PDF