2018-07-04

Java ScriptでQuery StringをObjectに変換する

  1. var qs = document.location.search.replace(/(^\?)/,'').split("&").map(function(n){return nn = n.split("="),this[n[0]] = decodeURIComponent(n[1]),this}.bind({}))[0];  

これで
?name=hoge&gender=female
に対して
qs.name --> hoge
と値が取得できます。

2017-07-03

elFinderでchmod出来るようにする

ブラウザ上から、サーバーのファイル操作ができるWEBアプリ版のファイルマネージャー elFinder ですが、デフォルトではパーミッションの変更が出来ず少々苦労したのでメモです。



どうやらこのオプションを有効にしてあげれば良いみたいです。

https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options-2.1#statOwner



elFinder/php/connector.minimal.php

のファイルに次の記述を入れれば設定が有効かされました。

'statOwner' => 'True',

記述箇所はこのあたり


  1. $opts = array(  
  2.  // 'debug' => true,  
  3.  'roots' => array(  
  4.   // Items volume  
  5.   array(  
  6. ---- 中略 ----  
  7.    'statOwner' => 'True',  
  8. ---- 中略 ----  
  9.   ),  

この設定を入れて、リロードしてみると * みたいな黄色のアイコンが出現し、属性変更(パーミッション変更)が出来るようになりましたヽ(´ー`)/

2017-06-27

AWS Management ConsoleのS3新UIで、deletedなオブジェクトをprefix指定でフィルタリング表示する

バージョン管理をenableにしたS3バケットで、大量のdeletedなオブジェクトの中からprefix指定でオブジェクトをピックアップしようとしてみたところ

No keys were found for prefix search.


と言われてしまい、deletedなオブジェクトに対してprefix指定での検索ができませんでした(´・ω・`)



ブラウザ上の操作では

Type a prefix and press Enter to search. Press ESC to clear.

と書かれているフォームにprefixを指定してみても、deletedではない現行バージョンに対して検索してしまうようです。



ワークアラウンドとして、次のように直接URLで指定してあげるとdeletedなオブジェクトに対して検索することができましたよヽ(´ー`)/
  1. https://console.aws.amazon.com/s3/buckets/<バケット名>/<prefix>?showdeleted=true  

2017-02-14

MySQLでユーザーに設定したパスワードが効かなくて嵌った件

Amazon Linuxでyumを使ってMySQL56をインストールし起動し、データベースとユーザーを作成して
ログインしてみると設定したパスワードでログインできないではありませんか(;゜〇゜)

  1. mysql> create database mydb character set utf8;  
  2. mysql> grant all on mydb.* to user identified by 'xxxxx';  
  3.   
  4. $ mysql -u user -p  
  5. Enter password:   
  6. ERROR 1045 (28000): Access denied for user 'user '@'localhost' (using password: YES)  

ところが、パスワードなしでログインを試みるとは入れてしまいましたΣ(゜д゜;)

プロセスを確認してみると指定したユーザーでログインしています。

  1. $ mysql -u user  
  2. Welcome to the MySQL monitor.  Commands end with ; or \g.  
  3. Your MySQL connection id is 30  
  4. Server version: 5.6.35 MySQL Community Server (GPL)  
  5.   
  6. Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.  
  7.   
  8. Oracle is a registered trademark of Oracle Corporation and/or its  
  9. affiliates. Other names may be trademarks of their respective  
  10. owners.  
  11.   
  12. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.  
  13.   
  14. mysql> show processlist;  
  15. +----+-----------+-----------+------+---------+------+-------+------------------+  
  16. | Id | User  | Host      | db   | Command | Time | State | Info  |  
  17. +----+-----------+-----------+------+---------+------+-------+------------------+  
  18. | 28 | user      | localhost | NULL | Query   |    0 | init  | show processlist |  
  19. +----+-----------+-----------+------+---------+------+-------+------------------+  
  20. 1 row in set (0.00 sec)  

ユーザーテーブルどーなってるか確認してみるとユーザー名なし、パスワードなしの登録が入っていました

あやしいです(;一_一)

  1. mysql> select user,host from user;  
  2. +-----------+------------------+-------------------------------------------+  
  3. | user     | host        | password       |  
  4. +-----------+------------------+-------------------------------------------+  
  5. | user      | %         | *XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX |  
  6. | root     | 127.0.0.1        |                                           |  
  7. | root     | ::1        |                                           |  
  8. |     | ip-xxx-xx-xx-xxx |                                           |  
  9. | root     | ip-xxx-xx-xx-xxx |                                           |  
  10. |     | localhost        |                                           |  
  11. | root     | localhost        |                                           |  
  12. +-----------+------------------+-------------------------------------------+  
  13.   
  14. mysql> select host from user where user="";  
  15. +------------------+  
  16. | host     |  
  17. +------------------+  
  18. | ip-xxx-xx-xx-xxx |  
  19. | localhost    |  
  20. +------------------+  
  21. 2 rows in set (0.00 sec)  

怪しいので消してしまいましょうヽ(´ー`)/
  1. mysql> delete from user where user="";  
  2. Query OK, 2 rows affected (0.00 sec)  
  3.   
  4. mysql> FLUSH PRIVILEGES;  
  5. Query OK, 0 rows affected (0.00 sec)  

そしたら、次の通り入れました!ヾ(*・∀・)ノ"
  1. $ mysql -u user -p  
  2. Enter password:   
  3. Welcome to the MySQL monitor.  Commands end with ; or \g.  
  4. Your MySQL connection id is 30  
  5. Server version: 5.6.35 MySQL Community Server (GPL)  
  6.   
  7. Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.  
  8.   
  9. Oracle is a registered trademark of Oracle Corporation and/or its  
  10. affiliates. Other names may be trademarks of their respective  
  11. owners.  
  12.   
  13. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.  
  14.   
  15. mysql>   

2016-10-05

restart dhclient without OS reboot

yum updateを実施したところdhclientがdeletedな状態となってしまいました
  1. # lsof|grep del  
  2. dhclient   2292      root  txt      REG       202,1    547784   402927 /sbin/dhclient (deleted)  

いろいろと調べて、最終的に辿り着いた対応方法がこれ

  1. # service network reload  
  2. Shutting down interface eth0:       [  OK  ]  
  3. Shutting down loopback interface:      [  OK  ]  
  4. Bringing up loopback interface:       [  OK  ]  
  5. Bringing up interface eth0:    
  6. Determining IP information for eth0... done.  
  7.           [  OK  ]  
  8. # lsof|grep del  

瞬断はあるものの、接続中のセッションが切れることもなくdeleted状態から抜け出せましたヾ(*・∀・)ノ"