Puppet Mysql

Alternatives To Puppet Mysql
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Gopherus2,228
16 days ago3mitPython
This tool generates gopher link for exploiting SSRF and gaining RCE in various servers
Nacos Docker1,087
9 days ago49Shell
This project contains a Docker image meant to facilitate the deployment of Nacos .
Flat Server531
16 hours ago14mitTypeScript
A Node.js server for the Agora Flat open source classroom.
Docker Communityserver410
22 days ago53mitShell
Collaborative system for managing documents, projects, customer relations and emails in one place
Wormhole370
8 years agoJune 04, 2021apache-2.0Go
A smart proxy to connect docker containers.
Forsun213
9 months ago13March 20, 2020mitPython
高性能的定时调度服务。
Easyswoole_admin152
2 years ago1PHP
easyswoole写的后台,权限管理,前后分离模板
Docker Drupal133
4 years ago2Dockerfile
Quick and dirty Drupal for development
Myslowtrancapture116
8 years ago2gpl-2.0C++
A tool to print MySQL transactions that take more than <n> milliseconds
Short Link98
4 months ago19apache-2.0JavaScript
Shorten long urls
Alternatives To Puppet Mysql
Select To Compare


Alternative Project Comparisons
Readme

MySQL Puppet Module for Boxen

Build Status

Usage

include mysql

mysql::db { 'mydb': }

Required Puppet Modules

  • boxen
  • homebrew
  • stdlib

Environment

ATTENTION Boxen uses a non standard 13306 port to avoid collisions.

Once installed, you can access the following variables in your environment, projects, etc:

  • BOXEN_MYSQL_PORT: the configured MySQL port
  • BOXEN_MYSQL_URL: the URL for MySQL, including localhost & port
  • BOXEN_MYSQL_SOCKET: the path to the MySQL socket

Rails

In config/database.yml:

<%
  socket = [
    ENV["BOXEN_MYSQL_SOCKET"],
    "/var/run/mysql5/mysqld.sock",
    "/tmp/mysql.sock"
  ].detect { |f| f && File.exist?(f) }

  port = ENV["BOXEN_MYSQL_PORT"] || "3306"
%>

development: &development
  adapter: mysql
  database: yourapp_development
  username: root
<% if socket %>
  host: localhost
  socket: <%= socket %>
<% else %>
  host: 127.0.0.1
  port: <%= port %>
<% end %>

# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
  <<: *development
  database: yourapp_test

Developing

Write code.

Run script/cibuild.

Popular Mysql Projects
Popular Port Projects
Popular Data Storage Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Ruby
Mysql
Port
Socket
Puppet
Stdlib