« »  1 |  2 |  3 | 全部

久々会社ブログ

いや~ なかなか夏が来ません。
仕事ばっかりでちょっとストレス気味です。

▲ページトップ

インスコ後のMySQL設定メモ

インストール後にrootのパスワードを設定しましょう
その後に、最初からいるuserを削除しておきましょう。

[root@ns1 ~]# mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 10 to server version: 3.23.58

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> set password for root=password('********'); ここにパスワードを設定
Query OK, 0 rows affected (0.02 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.03 sec)

mysql> exit
Bye
[root@ns1 ~]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 11 to server version: 3.23.58

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> delete from user where user='';
Query OK, 2 rows affected (0.02 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> exit
Bye
[root@ns1 ~]#

トラックバック (0) ▲ページトップ

Blogツール

最強ですhttp://media-kite.co.jp/products/ubformt/で記事の作成は自由自在です。
Movable Typeをお使いの方にはもってこいです。
一応紹介でした。。

トラックバック (0) ▲ページトップ

Blogビジネス

非常に参考になります。

トラックバック (0) ▲ページトップ

勉強になります

やはり時代はBlogです。
みなさんBlog=日記 と思いがちですが、Blogの機能を使えばいろんなことができます。
今の時代、HTMLで作成してFTP。。 なんてとても考えられませんね。

トラックバック (0) ▲ページトップ
« »  1 |  2 |  3 | 全部