Thursday, December 22, 2016

Settingup MYSQL Generating the Keys and Signing them Execute following commands to generate necessary keys and to sign them. openssl genrsa 2048 > ca-key.pem openssl req -new -x509 -nodes -days 3600 -key ca-key.pem -out ca.pem openssl req -newkey rsa:2048 -days 3600 -nodes -keyout server-key.pem -out server-req.pem openssl rsa -in server-key.pem -out server-key.pem openssl x509 -req -in server-req.pem -days 3600 -CA ca.pem -CAkey ca-key.pem...

Thursday, December 8, 2016

When I was trying to use eclipse on Fedora 26 I faced many errors related to GTK 3. Following are some of the errors I saw. These were observed in Mars2, Oxygen and also in Neon. (Eclipse:11437): Gtk-WARNING **: Allocating size to SwtFixed 0x7fef3992f2d0 without calling gtk_widget_get_preferred_width/height(). How does the code know the size to allocate? (Eclipse:13633): Gtk-WARNING **: Negative content width -1 (allocation 1, extents 1x1)...
Subscribe to RSS Feed Follow me on Twitter!