2014-01-01から1年間の記事一覧
MySQLのインストール(1/5) 0. OSのバージョンの確認1. インストール2. MySQLのバージョンの確認3. 設定ファイルの確認4. my.cnf のコピー5. PATHの確認 MySQLのインストール(2/5) 6. データベースの初期化7. データベースディレクトリの確認 MySQLの…
13. rootのパスワードの設定 # /usr/bin/mysqladmin -u root password 'your-password'# /usr/bin/mysqladmin -u root -h your-domain.com password 'your-password' ログインのテスト# mysql -u root -pEnter password: Welcome to the MySQL monitor. Comm…
10. 文字コードの確認mysql> show variables like 'char%'; Variable_name Value character_set_client latin1 character_set_connection latin1 character_set_database latin1 character_set_filesystem binary character_set_results latin1 character_se…
8. mysqlの起動 # chown -R mysql:mysql /var/lib/mysql# /etc/rc.d/init.d/mysqld startmysqld を起動中: [ OK ] 9. MySQLへのログイン # mysqlWelcome to the MySQL monitor. Commands end with ; or \g.Your MySQL connection id is 2Server version: 5.1…
6. データベースの初期化 # vi /etc/my.cnf :%s/skip-locking/skip-external-locking/g Esc :wq (注)my.cnf の skip-locking を skip-external-locking へ書き換える # mysql_install_dbInstalling MySQL system tables...OKFilling help tables...OK To s…
0. OSのバージョンの確認 # cat /etc/redhat-releaseCentOS release 6.5 (Final) 1. インストール # yum install mysql mysql-bench mysql-devel mysql-libs mysql-server 2. MySQLのバージョンの確認 # mysql --versionmysql Ver 14.14 Distrib 5.1.73, for…
1)インストール # yum install -y bluefish 2)確認 # yum info bluefish Installed PackagesName : bluefishArch : i686Version : 2.0.3Release : 6.el6Size : 1.2 MRepo : installedFrom repo : epelSummary : GTK2 web development application for experi…
1)インストール # yum install -y geany 2)確認 # yum info geany Installed Packages Name : geanyArch : i686Version : 1.24.1Release : 1.el6Size : 14 MRepo : installedFrom repo : epelSummary : A fast and lightweight IDE using GTK2URL : http://w…
1)インストール # yum install -y yumex ..... ..... Installed: yumex.noarch 0:3.0.5-2.el6 Complete! # 2)確認 # yum info yumex Installed PackagesName : yumexArch : noarchVersion : 3.0.5Release : 2.el6Size : 1.3 MRepo : installedFrom repo : ep…
$ uname -aLinux localhost.localdomain 2.6.32-431.23.3.el6.centos.plus.i686 #1 SMP Tue Jul 29 23:27:50 UTC 2014 i686 i686 i386 GNU/Linux
$ cat /etc/redhat-releaseCentOS release 6.5 (Final)