Node.JS - Async.js
https://github.com/caolan/async
JavaScript - Q
http://documentup.com/kriskowal/q/
https://github.com/kriskowal/q
標籤
2D
3D Printer
7-Zip
穩壓器
Adobe XD
AI
AJAX
Android
Apache
APIs
APP Script
Arduino
Async
Audio
Authorization
Auto
Autocomplete
AWS
Azure
Batch
Building
Canvas
Certificate
Chrome
CI/CD
Class
CLI
Cloud
Cloud Native
CMake
CMS
codec
Color
Comodo
Compress
Config
Consent
Console application
Cookie
Cron
CSharp
CSS
CSS3
CString
CSV
CUDA
Database
Date
Day
Debug
Deep Learning
Defender
dependencies
Deploying
Design
DevOps
Diagrams
docker
Document
Domain Name
Dropbox
Eclipse
Editor
Equality
ESP8266
Excel
express
Extension
Facebook
Feature Flag
filewatcher
Float
FreeBSD
gif
git
gitlab
GLSL
Google
Gradient
grbl
Home Assistant
HTML5
HTTP
i18n
icon
ICP
Image
Image Synthesis
injection
int
IoT
IR
JavaScript
jQuery
Json
Language
Laravel
Load Testing
Loader
Logger
Maker
MariaDB
Markdown
Math
Mathematica
Messenger
MFC
Microservices
MIDI
Migration
Mobile
Mock
Moment
MongoDB
mp4
MSSQL
Music
MySQL
Named
NAT
Neural Networks
Node.js
npm
Obfuscator
Objective-C
ORM
P2P
Package
Patent
PDF
PHP
PHPMyAdmin
Planning
PostgreSQL
PowerShell
pragma
React
Regex
region
Regular Expression
REST
RESTful
Resumable
RFID
sci
Search
Serverless
Service
Session
Site
Sketch
Slide
Socket
Sort
Spark
SQL
SQLite
SSD
SSL
Static
Stream
TBD
TensorFlow
test
Time
Touch
Tutorial
Tween
TypeScript
Ubuntu
UI
ULPS
UML
UniformServer
Unleash
Unzip
Upload
UX
Validator
VC++
VisualStudio
VisualStudio2010
VSCode
VTK
Vue
Web
WebAssembly
Webpack
Wifi
Win32
Windows
WinRAR
yarn
Youtube
Zigbee
Zip
2013年7月29日 星期一
2013年7月24日 星期三
MySQL伺服器設定使用mysqld
my.ini內容
Batch啟動檔
Batch停止檔
設定密碼
修改密碼
備份資料庫 - 方法1
備份資料庫 - 方法2
還原資料庫
# For advice on how to change settings please see # http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html # *** DO NOT EDIT THIS FILE. It's a template which will be copied to the # *** default location during install, and will be replaced if you # *** upgrade to a newer version of MySQL. [mysqld] # Remove leading # and set to the amount of RAM for the most important data # cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%. # innodb_buffer_pool_size = 128M # Remove leading # to turn on a very important data integrity option: logging # changes to the binary log between backups. # log_bin # These are commonly set, remove the # and set as required. basedir = D:/MySQL datadir = D:/MySQL/data port = 3306 # server_id = ..... character-set-server = utf8 collation-server = utf8_general_ci # Remove leading # to set options mainly useful for reporting servers. # The server defaults are faster for transactions and fast SELECTs. # Adjust sizes as needed, experiment to find the optimal values. # join_buffer_size = 128M # sort_buffer_size = 2M # read_rnd_buffer_size = 2M sql_mode = NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
Batch啟動檔
cd bin mysqld --install net start mysql
Batch停止檔
net stop mysql bin\mysqld --remove
設定密碼
mysqladmin -u root password YOUR-PASSWORD
修改密碼
cd bin rem mysqladmin -u root password '123456' mysql -u root -p rem use mysql rem update user set password=PASSWORD('123456') where user='root';
備份資料庫 - 方法1
cd bin mysqldump test -u root -p > d:\test.sql.bak
備份資料庫 - 方法2
mysqldump -u username -p database --single-transaction >dump.sql
還原資料庫
cd bin mysql test -u root -p < d:\test.sql.bak自動安裝
mysqld --install手動安裝
mysqld --install -manual
2013年7月18日 星期四
2013年7月12日 星期五
背景執行Node.JS的套件
安裝指令:
npm install -g forever執行指令:
forever start app.js查看指令:
forever list停止指令:
forever stop 0
訂閱:
文章 (Atom)