Re: [CentOS] Java+Tomcat on CentOS 6.x

2012-01-18 Thread John Kienitz
>From: Les Mikesell 

>To: CentOS mailing list  
>Sent: Wednesday, January 18, 2012 7:53 AM
>Subject: Re: [CentOS] Java+Tomcat on CentOS 6.x
 >
>On Tue, Jan 17, 2012 at 9:18 PM, John Kienitz  wrote:
>>
>> OpenJDK for Java 6 has issues, and I / we don't trust Java 7 of any flavor 
>> yet.
>
>What kind of problems should I expect from the stock openjdk?
>
>-- 
>  Les Mikesell
>    lesmikes...@gmail.com

I will have to dig thru our records, and see what we discovered.

I remember that Eclipse was flaky..

John Kienitz
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Java+Tomcat on CentOS 6.x

2012-01-17 Thread John Kienitz
>From: John R Pierce 

>To: CentOS mailing list  
>Sent: Tuesday, January 17, 2012 2:40 PM
>Subject: [CentOS] Java+Tomcat on CentOS 6.x
 >
>So whats good practice for installing Java/JDK and Tomcat for EL6 these 
>days?   The base repository included Tomcat6.6 is built with GCJ which 
>I'd rather avoid. I'm fine with using OpenJDK ... Do most folks just use 
>the Apache tarball for Tomcat and install it in a user directory or 
>/opt/something ?
>
>
>-- 
>john r pierce                            N 37, W 122
>santa cruz ca                         mid-left coast


We still like our customers to use the Oracle / Sun JDK, and the Apache tarball.

Our ops people recommend putting it all in /usr/local/ourcompany.  /opt is 
probably
a better place.

OpenJDK for Java 6 has issues, and I / we don't trust Java 7 of any flavor yet.

Tomcat 7 is good.

John Kienitz
___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Frustrations with MySQL loss, tcpdump, netstat, etc

2009-12-22 Thread John Kienitz


UPDATE mysql.user SET Password=PASSWORD('mypassword') WHERE User='root';
GRANT ALL ON mysql.* to 'root'@'127.0.0.1';
GRANT ALL ON mysql.* TO 'root'@'localhost';
GRANT ALL ON mysql.* TO 'root'@'my home IP';
FLUSH PRIVILEGES;
commit;

and I still cannot connect. But the database starts and this code executes 
because If I go to the console and run /usr/bin/mysql -u root -p and use this 
password from the update statement that password gets me in.

So, on my server I run tcpdump host  and I dont think I see anything 
where 3306 is coming through. 

if I run a test MySQL connection from the MySQL Workbench and they run netstat 
on my server
and I dont see a entry where 3306 is used in what netstat is dumping.

What am I doing wrong? What can I check for? I am stumped!

-Jason
--

Try to telnet to port 3306 and see if you get thru.

Try changing the password after you have added the users with the GRANTS.  If 
you have run your script more than once that has probably been done.  Commit 
should probably be before the flush also.

John 



  

___
CentOS mailing list
CentOS@centos.org
http://lists.centos.org/mailman/listinfo/centos