Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - eagleview

Pages: [1]
1
CentOS-WebPanel Bugs / Re: Extra user's FTP accounts creation issues
« on: April 14, 2016, 08:11:46 PM »
Error message is - Error:   Authentication failed.
Error:   Critical error: Could not connect to server

Believe me I checked the password 20 times. It won't work for any domain/account.

2
CentOS-WebPanel Bugs / Extra user's FTP accounts creation issues
« on: April 11, 2016, 02:51:04 AM »
Hi there,

I have an with FTP addon accounts that is created from the user panel. Extra FTP accounts. Can't login using thouse.
Name is shown as test@domain.com instead of just name.

See screenshot.

Any advice?
Where can I find CWP scripts to fix it?

Regards,
Eagle


3
MySQL / Re: How to update mysql from 5.1 to 5.6
« on: March 14, 2016, 06:10:00 PM »
Backup your MySQL data files before updating

Update

One more step to do is to update MySQL.user table.
From console run the following command.
#mysql_upgrade --upgrade-system-tables

To verify run the following command from MySQL
#mysql
mysql> SELECT COUNT(1) column_count FROM information_schema.columns WHERE table_schema='mysql' AND table_name='user';

SHould be the following (43 columns in 5.6) :

+--------------+
| column_count |
+--------------+
|           43 |
+--------------+
1 row in set (0.00 sec)

After the step below MySQL 5.6 should work smoothly with CWP.

you didn't have to pay for that since you can google for the instructions.
The easiest way is to install MariaDB including MariaDB repo.

https://mariadb.com/kb/en/mariadb/documentation/getting-started/binary-packages/rpm/yum/

Thanks. It almost worked.
Had issues with MySQL failing to start.
Used the following fix:
Quote
Symptom MySQL service failed to start after upgrading from MySQL 5.1 to 5.6 version.

Given below is the error found after upgrading to MySQL server version 5.6 from 5.1. You can get the below error in MySQL error log file.

2014-11-29 02:22:56 2175 [ERROR] InnoDB: auto-extending data file ./ibdata1 is of a different size 640 pages (rounded down to MB) than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
2014-11-29 02:22:56 2175 [ERROR] InnoDB: Could not open or create the system tablespace. If you tried to add new data files to the system tablespace, and it failed here, you should now edit innodb_data_file_path in my.cnf back to what it was, and remove the new ibdata files InnoDB created in this failed attempt. InnoDB only wrote those files full of zeros, but did not yet use them in any way. But be careful: do not remove old data files which contain your precious data!
2014-11-29 02:22:56 2175 [ERROR] Plugin ‘InnoDB’ init function returned error.
2014-11-29 02:22:56 2175 [ERROR] Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed.
2014-11-29 02:22:56 2175 [ERROR] Unknown/unsupported storage engine: InnoDB
2014-11-29 02:22:56 2175 [ERROR] Aborting

Solution :

To solve this problem add the below given line in /etc/my.cnf file inside [mysqld] block.

innodb_data_file_path = ibdata1:10M:autoextend

---------------------------

service mysqld restart

MySQL updated sucesfully


4
MySQL / Re: How to update mysql from 5.1 to 5.6
« on: February 05, 2016, 09:08:36 PM »
you didn't have to pay for that since you can google for the instructions.
The easiest way is to install MariaDB including MariaDB repo.

https://mariadb.com/kb/en/mariadb/documentation/getting-started/binary-packages/rpm/yum/

Thanks. It almost worked.
Had issues with MySQL failing to start.
Used the following fix:
Quote
Symptom MySQL service failed to start after upgrading from MySQL 5.1 to 5.6 version.

Given below is the error found after upgrading to MySQL server version 5.6 from 5.1. You can get the below error in MySQL error log file.

2014-11-29 02:22:56 2175 [ERROR] InnoDB: auto-extending data file ./ibdata1 is of a different size 640 pages (rounded down to MB) than specified in the .cnf file: initial 768 pages, max 0 (relevant if non-zero) pages!
2014-11-29 02:22:56 2175 [ERROR] InnoDB: Could not open or create the system tablespace. If you tried to add new data files to the system tablespace, and it failed here, you should now edit innodb_data_file_path in my.cnf back to what it was, and remove the new ibdata files InnoDB created in this failed attempt. InnoDB only wrote those files full of zeros, but did not yet use them in any way. But be careful: do not remove old data files which contain your precious data!
2014-11-29 02:22:56 2175 [ERROR] Plugin ‘InnoDB’ init function returned error.
2014-11-29 02:22:56 2175 [ERROR] Plugin ‘InnoDB’ registration as a STORAGE ENGINE failed.
2014-11-29 02:22:56 2175 [ERROR] Unknown/unsupported storage engine: InnoDB
2014-11-29 02:22:56 2175 [ERROR] Aborting

Solution :

To solve this problem add the below given line in /etc/my.cnf file inside [mysqld] block.

innodb_data_file_path = ibdata1:10M:autoextend

---------------------------

service mysqld restart

MySQL updated sucesfully

Pages: [1]