Posted by Clayton | Posted in cPanel, Tutorial | Posted on 03-14-2012
0
A client opened a ticket since they were receiving the following error when trying to install a script via fantasticrap…I mean fantastico.
Warning: mysql_connect() [function.mysql-connect]: Access denied for user ‘linuxnoo’@'localhost’ (using password: YES) in /tmp/cpanel_phpengine.1304688239.24500MvupN_eQWd on line 1642
Access denied for user ‘linuxnoo’@'localhost’ (using password: YES)
This issue is caused by a mismatch in the cPanel password and the MySQL users password. You can verify this in SSH by running the following.
mysql> use mysql;
mysql> select user,password,password('YourPassword') from user where user='YourCpanelUser';
+----------+-----------------------------+-----------------------+
| user | password | password('--') |
+----------+-----------------------------+-----------------------+
| linuxnoo | *E6.....3F | *B6.....3A |
+----------+-----------------------------+-----------------------+
2 rows in set (0.00 sec)
As you can see above, the two password fields do not match so we need to update this.
mysql> update user set password=password('bNEQL13dvJ') where user='linuxnoo' limit 2;
mysql> select user,password,password('bNEQL13dvJ') from user where user='linuxnoo';
+----------+-------------------------------------------+-------------------------------------------+
| user | password | password('bNEQL13dvJ') |
+----------+-------------------------------------------+-------------------------------------------+
| linuxnoo | *E6D911C8973EEDDA0CE0618EFB493E704776DB3F | *E6D911C8973EEDDA0CE0618EFB493E704776DB3F |
+----------+-------------------------------------------+-------------------------------------------+
2 rows in set (0.00 sec)
After the password update try to install again and it should work just fine.
Posted by Clayton | Posted in cPanel, Tutorial | Posted on 03-12-2012
1
Long time no post…I know. I recently had to do a cpnginx install since our 3rd level team was a little short at the time. Nonetheless, it’s a pretty straight forward install.
root@grumpy [/]# cd /usr/local/src
root@grumpy [/usr/local/src]# wget http://nginxcp.com/latest/nginxadmin.tar
root@grumpy [/usr/local/src]# tar xf nginxadmin.tar
root@grumpy [/usr/local/src]# cd publicnginx
root@grumpy [/usr/local/src/publicnginx]# ./nginxinstaller install
The uninstall is just as simple.
root@grumpy [/]# cd /usr/local/src
root@grumpy [/usr/local/src]# wget http://nginxcp.com/latest/nginxadmin.tar
root@grumpy [/usr/local/src]# tar xf nginxadmin.tar
root@grumpy [/usr/local/src]# cd publicnginx
root@grumpy [/usr/local/src/publicnginx]# ./nginxinstaller uninstall
Unfortunately things didn’t go smooth on the first install, and I ran into a few errors which were caused by an out of date python install.
Posted by Clayton | Posted in cPanel | Posted on 05-12-2011
0
Just got this e-mail from cPanel ^_^
We are pleased to announce the release of cPanel & WHM 11.30
This release is available immediately in the EDGE and CURRENT release tier. cPanel & WHM 11.30 will soon be available in all public release tiers.
This version includes:
• Over 600 maintenance and bug fixes
• Over 30 feature improvements and additions
• Over 150 product optimizations for performance and usability
For a full list of changes, please see our product change logs:
http://go.cpanel.net/changelog
In order to receive immediate notification of build availability, including updates for individual release tiers, please subscribe to our Releases Mailing List here:
http://go.cpanel.net/releaselist
To report concerns or issues related to your cPanel & WHM system, please contact our support team:
http://www.cpanel.net/support.html
For general discussions related to cPanel & WHM, please visit the official cPanel forums:
http://forums.cpanel.net/
cPanel is also very excited to announce our first ever formal partnership with CloudLinux.
To more effectively serve your needs, licensing for cPanel and CloudLinux can be done through one location. We’re also offering direct support for CloudLinux in the event you’re in need of help. By unifying our licensing systems and integrating direct support, we’ve made it easy for you to use cPanel with Cloudlinux.
Curious about how cPanel with CloudLinux will help you better serve your customers? Visit http://go.cpanel.net/cl or contact cs@cpanel.net for more information.