Skip to content

Commit

Permalink
add mysql doc
Browse files Browse the repository at this point in the history
  • Loading branch information
i5ting committed Aug 12, 2014
1 parent 4d0d940 commit 5750628
Show file tree
Hide file tree
Showing 5 changed files with 181 additions and 2 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 0 additions & 2 deletions angularjs/angularjs_sang.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,6 @@ index1.html
至此,推导出双向绑定。一切都源自$scope




## AngularJS应用的解析

本节描述AngularJS应用程序的三个组成部分,并解释它们如何映射到模型-视图-控制器设计模式:
Expand Down
61 changes: 61 additions & 0 deletions tools/gulpfile.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
var gulp = require('gulp');
var gutil = require('gulp-util');
var bower = require('bower');
var concat = require('gulp-concat');
var sass = require('gulp-sass');
var minifyCss = require('gulp-minify-css');
var rename = require('gulp-rename');
var sh = require('shelljs');
require('shelljs/global');

var paths = {
sass: ['./scss/**/*.scss'],
www: ['www/'],
www_watch: ['./www/**/**'],
www_dest: ['./platforms/ios/www/']
};

gulp.task('default', ['sass']);

gulp.task('sass', function(done) {
gulp.src('./scss/ionic.app.scss')
.pipe(sass())
.pipe(gulp.dest('./www/css/'))
.pipe(minifyCss({
keepSpecialComments: 0
}))
.pipe(rename({ extname: '.min.css' }))
.pipe(gulp.dest('./www/css/'))
.on('end', done);
});

gulp.task('watch', function() {
gulp.watch(paths.sass, ['sass']);
gulp.watch(paths.www_watch, ['www']);
});

gulp.task('www', function(done) {
console.log('gulp watch log info : www directory changed.');
cp('-Rf', './www', './platforms/ios/www/');
});


gulp.task('install', ['git-check'], function() {
return bower.commands.install()
.on('log', function(data) {
gutil.log('bower', gutil.colors.cyan(data.id), data.message);
});
});

gulp.task('git-check', function(done) {
if (!sh.which('git')) {
console.log(
' ' + gutil.colors.red('Git is not installed.'),
'\n Git, the version control system, is required to download Ionic.',
'\n Download git here:', gutil.colors.cyan('http://git-scm.com/downloads') + '.',
'\n Once git is installed, run \'' + gutil.colors.cyan('gulp install') + '\' again.'
);
process.exit(1);
}
done();
});
Empty file added tools/index.md
Empty file.
120 changes: 120 additions & 0 deletions tools/mysql.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@

## download and unpach /usr/local/mysql

On Unix, to install a compressed tar file binary distribution, unpack it at the installation location you choose (typically /usr/local/mysql).


## install

```
➜ mysql git:(master) ./scripts/mysql_install_db
Installing MySQL system tables...2014-08-12 10:39:21 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2014-08-12 10:39:21 38435 [Note] InnoDB: Using atomics to ref count buffer pool pages
2014-08-12 10:39:21 38435 [Note] InnoDB: The InnoDB memory heap is disabled
2014-08-12 10:39:21 38435 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2014-08-12 10:39:21 38435 [Note] InnoDB: Memory barrier is not used
2014-08-12 10:39:21 38435 [Note] InnoDB: Compressed tables use zlib 1.2.3
2014-08-12 10:39:21 38435 [Note] InnoDB: Not using CPU crc32 instructions
2014-08-12 10:39:21 38435 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2014-08-12 10:39:21 38435 [Note] InnoDB: Completed initialization of buffer pool
2014-08-12 10:39:21 38435 [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
2014-08-12 10:39:21 38435 [Note] InnoDB: Setting file ./ibdata1 size to 12 MB
2014-08-12 10:39:21 38435 [Note] InnoDB: Database physically writes the file full: wait...
2014-08-12 10:39:21 38435 [Note] InnoDB: Setting log file ./ib_logfile101 size to 48 MB
2014-08-12 10:39:22 38435 [Note] InnoDB: Setting log file ./ib_logfile1 size to 48 MB
2014-08-12 10:39:22 38435 [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
2014-08-12 10:39:22 38435 [Warning] InnoDB: New log files created, LSN=45781
2014-08-12 10:39:22 38435 [Note] InnoDB: Doublewrite buffer not found: creating new
2014-08-12 10:39:23 38435 [Note] InnoDB: Doublewrite buffer created
2014-08-12 10:39:23 38435 [Note] InnoDB: 128 rollback segment(s) are active.
2014-08-12 10:39:23 38435 [Warning] InnoDB: Creating foreign key constraint system tables.
2014-08-12 10:39:23 38435 [Note] InnoDB: Foreign key constraint system tables created
2014-08-12 10:39:23 38435 [Note] InnoDB: Creating tablespace and datafile system tables.
2014-08-12 10:39:23 38435 [Note] InnoDB: Tablespace and datafile system tables created.
2014-08-12 10:39:23 38435 [Note] InnoDB: Waiting for purge to start
2014-08-12 10:39:23 38435 [Note] InnoDB: 5.6.20 started; log sequence number 0
2014-08-12 10:39:29 38435 [Note] Binlog end
2014-08-12 10:39:29 38435 [Note] InnoDB: FTS optimize thread exiting.
2014-08-12 10:39:29 38435 [Note] InnoDB: Starting shutdown...
2014-08-12 10:39:30 38435 [Note] InnoDB: Shutdown completed; log sequence number 1625977
OK
Filling help tables...2014-08-12 10:39:30 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2014-08-12 10:39:30 38440 [Note] InnoDB: Using atomics to ref count buffer pool pages
2014-08-12 10:39:30 38440 [Note] InnoDB: The InnoDB memory heap is disabled
2014-08-12 10:39:30 38440 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2014-08-12 10:39:30 38440 [Note] InnoDB: Memory barrier is not used
2014-08-12 10:39:30 38440 [Note] InnoDB: Compressed tables use zlib 1.2.3
2014-08-12 10:39:30 38440 [Note] InnoDB: Not using CPU crc32 instructions
2014-08-12 10:39:30 38440 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2014-08-12 10:39:30 38440 [Note] InnoDB: Completed initialization of buffer pool
2014-08-12 10:39:30 38440 [Note] InnoDB: Highest supported file format is Barracuda.
2014-08-12 10:39:30 38440 [Note] InnoDB: 128 rollback segment(s) are active.
2014-08-12 10:39:30 38440 [Note] InnoDB: Waiting for purge to start
2014-08-12 10:39:30 38440 [Note] InnoDB: 5.6.20 started; log sequence number 1625977
2014-08-12 10:39:30 38440 [Note] Binlog end
2014-08-12 10:39:30 38440 [Note] InnoDB: FTS optimize thread exiting.
2014-08-12 10:39:30 38440 [Note] InnoDB: Starting shutdown...
2014-08-12 10:39:32 38440 [Note] InnoDB: Shutdown completed; log sequence number 1625987
OK
To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system
PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:
./bin/mysqladmin -u root password 'new-password'
./bin/mysqladmin -u root -h macdeMacBook-Pro-2.local password 'new-password'
Alternatively you can run:
./bin/mysql_secure_installation
which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers.
See the manual for more instructions.
You can start the MySQL daemon with:
cd . ; ./bin/mysqld_safe &
You can test the MySQL daemon with mysql-test-run.pl
cd mysql-test ; perl mysql-test-run.pl
Please report any problems at http://bugs.mysql.com/
The latest information about MySQL is available on the web at
http://www.mysql.com
Support MySQL by buying support/licenses at http://shop.mysql.com
New default config file was created as ./my.cnf and
will be used by default by the server when you start it.
You may edit this file to change server settings
```

## start

```
mysqld_safe &
```

## 修改root密码

```
mysqladmin -u root password 'root'
```

## login

```
mysql -u root -p
```

0 comments on commit 5750628

Please sign in to comment.