- Update pg_hba.conf (most likely in /etc/postgresql/9.4/main) with -
host all all 0.0.0.0/0 trust
- Update postgresql.conf to use
listen_addresses = '*' - Be sure to
sudo service postgresql restart
Configure Vagrant
| import React from 'react' | |
| import { Link } from 'systems/Core/Link' | |
| import css from 'styled-jsx/css' | |
| export const Header = () => { | |
| return ( | |
| <header className="Root"> | |
| <img src="/logo.svg" width={100} /> | |
| <div className="MainMenu"> | |
| <ul className="MenuList"> |
| --- | |
| - hosts: localhost | |
| connection: local | |
| gather_facts: yes | |
| vars: | |
| - vpc_region: us-east-1 | |
| - my_useast1_key: my_northvirginia_keypair | |
| tasks: | |
| - name: create VPC for Ansible |
I hereby claim:
To claim this, I am signing this object:
Most of programs will not accept an email using just @localhost as domain.
So, edit /etc/hosts file to make the domain localhost.com point to your machine, including this content to the file:
127.0.0.1 localhost.com
| #!/bin/bash | |
| ################################################################################ | |
| # Script for installing Odoo V10 on Ubuntu 16.04, 15.04, 14.04 | |
| # Author: Yenthe Van Ginneken | |
| # Adjusted: Ray Carnes | |
| # Assumes you already have an Ubuntu user called "odoo" with a home folder | |
| #------------------------------------------------------------------------------- | |
| # Make a new file: | |
| # sudo nano odoo-install.sh | |
| # Place this content in it and then make the file executable: |